:root {
  --color-canopy: #2c2c36;
  --color-mint-pulse: #80b295;
  --color-accent-clay: #d8754f;
  --color-offer-yellow: #f6e58d;
  --color-cream-paper: #f3f6f0;
  --color-sheet-white: #fbfcf8;
  --color-bark: #2c2c36;
  --color-ink: #2c2c36;
  --color-slate: #565661;
  --color-charcoal: #3b3b46;
  --color-sage-mist: #d8e7dc;
  --color-pale-sage: #e7efe8;
  --color-muted-slate: #70717a;
  --color-hero-wash: var(--color-cream-paper);
  --color-forest-ink: var(--color-canopy);
  --color-sage: var(--color-mint-pulse);
  --color-mist-blue: var(--color-sage-mist);
  --color-soft-grey: var(--color-pale-sage);
  --color-cloud: var(--color-cream-paper);
  --color-sage-soft: var(--color-pale-sage);
  --color-mist-soft: var(--color-hero-wash);
  --color-bone-white: var(--color-sheet-white);
  --bg-cloud: var(--color-cloud);
  --bg-mist: var(--color-mist-soft);
  --bg-sage: var(--color-sage-soft);
  --color-graphite-ink: var(--color-bark);
  --color-nightshade-black: var(--color-canopy);
  --color-charcoal-slate: var(--color-charcoal);
  --color-iron-grey: var(--color-canopy);
  --color-stone-grey: var(--color-slate);
  --color-ash: var(--color-muted-slate);
  --color-clay-shadow: var(--color-sage-mist);
  --color-haze: var(--color-pale-sage);
  --color-linen-canvas: var(--color-cream-paper);
  --font-display: "Yeseva One", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Avenir Next", "Neue Haas Grotesk Text", system-ui, sans-serif;
  --font-brand: var(--font-body);
  --shadow-sm: 0 2px 8px color-mix(in srgb, var(--color-canopy) 8%, transparent);
  --shadow-md: 0 12px 34px color-mix(in srgb, var(--color-canopy) 8%, transparent);
  --shadow-xl: 0 24px 60px color-mix(in srgb, var(--color-canopy) 14%, transparent), 0 4px 14px color-mix(in srgb, var(--color-canopy) 8%, transparent);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1200px;
  --radius-card: 12.5px;
  --radius-button: 12px;
  --radius-pill: 50px;
  --grid-gap: 16px;
  --section-gap: 0px;
  --section-padding: clamp(82px, 8.5vw, 122px);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--color-linen-canvas);
  color: var(--color-graphite-ink);
  font-family: var(--font-brand);
  font-feature-settings: "blwf" on, "cv03" on, "cv04" on, "cv09" on, "cv11" on;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

[id] {
  scroll-margin-top: 92px;
}

button {
  appearance: none;
  border: none;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-mist-blue);
  outline-offset: 3px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up-centered {
  from {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero-content,
.hero-facts {
  animation: fade-up 880ms var(--ease-out) both;
}

.hero-facts {
  animation-name: fade-up-centered;
  animation-delay: 140ms;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 22px), 0);
  transition: opacity 780ms var(--ease-out), transform 780ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 46px);
  color: var(--color-bone-white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: color-mix(in srgb, var(--color-cream-paper) 96%, transparent);
  color: var(--color-forest-ink);
  box-shadow: 0 10px 34px color-mix(in srgb, var(--color-canopy) 8%, transparent);
  backdrop-filter: blur(16px);
}

.header-offer-bar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 19;
  display: grid;
  place-items: center;
  height: calc(var(--header-height) / 2);
  padding: 4px 18px;
  background: var(--color-offer-yellow);
  color: var(--color-canopy);
  cursor: pointer;
  font: inherit;
  text-align: center;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-header-offer .header-offer-bar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-offer-bar strong {
  display: block;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 800;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(168px, 15vw, 224px);
  height: auto;
  transition: filter 180ms ease;
}

.site-header:not(.is-scrolled):not(.is-open) .brand-logo {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.55vw, 22px);
  font-size: 15px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  color: currentColor;
  opacity: 0.86;
  transition: opacity 160ms ease, transform 160ms var(--ease-hover);
}

.site-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: currentColor;
}

.language-switch-label {
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.42;
  transition: color 160ms ease, opacity 160ms ease;
}

.language-switch-toggle {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 18%, transparent);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 12%, transparent), 0 3px 10px color-mix(in srgb, var(--color-canopy) 10%, transparent);
}

.language-switch-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: var(--color-sage-mist);
  transition: background 180ms ease, opacity 180ms ease;
}

.language-switch-thumb {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-cream-paper);
  box-shadow: 0 2px 6px color-mix(in srgb, var(--color-canopy) 24%, transparent);
  transition: transform 180ms var(--ease-hover);
}

html[data-lang="de"] .language-switch-label--de,
html[data-lang="en"] .language-switch-label--en {
  opacity: 1;
}

html[data-lang="de"] .language-switch-track {
  background: var(--color-sage);
}

html[data-lang="en"] .language-switch-thumb {
  transform: translateX(-24px);
}

.nav-cta,
.button.primary,
.unit-link {
  border-radius: var(--radius-button);
  background: var(--color-sage);
  color: var(--color-canopy);
}

.nav-cta {
  padding: 11px 20px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.site-nav .nav-cta {
  color: var(--color-canopy);
  opacity: 1;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible,
.unit-link:hover,
.unit-link:focus-visible {
  background: var(--color-accent-clay);
  color: var(--color-bone-white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 124px 18px 144px;
  background: var(--bg-mist);
  color: var(--color-bone-white);
}

.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-sage) 28%, transparent), color-mix(in srgb, var(--color-canopy) 56%, transparent)),
    color-mix(in srgb, var(--color-sage) 20%, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker,
.unit-label {
  margin: 0 0 14px;
  color: var(--color-sage);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.222em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--color-sage) 72%, transparent);
  box-shadow: var(--shadow-sm);
  color: var(--color-canopy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.222em;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(62px, 11.5vw, 128px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-offer-badge {
  display: inline-grid;
  gap: 4px;
  margin: 24px auto 0;
  padding: 15px 22px;
  border: 2px solid var(--color-cream-paper);
  border-radius: var(--radius-pill);
  background: var(--color-offer-yellow);
  box-shadow: var(--shadow-xl);
  color: var(--color-canopy);
  line-height: 1.1;
}

.hero-offer-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-offer-badge strong {
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 800;
  white-space: nowrap;
}

.hero-copy {
  max-width: 640px;
  margin: 28px auto 0;
  color: color-mix(in srgb, var(--color-cream-paper) 90%, transparent);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: var(--radius-button);
  font-weight: 600;
  line-height: 1.1;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms var(--ease-hover);
}

.button.ghost {
  background: color-mix(in srgb, var(--color-cream-paper) 20%, transparent);
  box-shadow: var(--shadow-sm);
  color: var(--color-bone-white);
  backdrop-filter: blur(14px);
}

.button:hover,
.unit-link:hover,
.slider-controls button:hover,
.lightbox-close:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button:active,
.unit-link:active,
.slider-controls button:active {
  transform: translateY(0);
}

.info-icon {
  --icon-size: 32px;
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/house.svg");
  display: inline-block;
  flex: 0 0 auto;
  width: var(--icon-size);
  height: var(--icon-size);
  background: currentColor;
  color: var(--color-sage);
  vertical-align: middle;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-armchair {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/armchair.svg");
}

.icon-arrows-out {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/arrows-out.svg");
}

.icon-bed {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/bed.svg");
}

.icon-euro {
  --icon: url("../icons/euro-sign.svg");
}

.icon-building-office {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/building-office.svg");
}

.icon-buildings {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/buildings.svg");
}

.icon-bus {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/bus.svg");
}

.icon-graduation-cap {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/graduation-cap.svg");
}

.icon-house {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/house.svg");
}

.icon-leaf {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/leaf.svg");
}

.icon-map-pin {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/map-pin.svg");
}

.icon-park {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/park.svg");
}

.icon-phone {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/phone.svg");
}

.icon-ruler {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/ruler.svg");
}

.icon-shopping-bag {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/shopping-bag.svg");
}

.icon-squares-four {
  --icon: url("../../phosphor-icons/SVGs%20Flat/regular/squares-four.svg");
}

.hero-facts {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: var(--grid-gap);
  width: min(1320px, calc(100% - 40px));
  transform: translateX(-50%);
}

.fact-card {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 128px;
  padding: 24px 24px 22px;
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--color-cream-paper) 20%, transparent);
  box-shadow: var(--shadow-md);
  color: color-mix(in srgb, var(--color-cream-paper) 86%, transparent);
  font-size: 19px;
  line-height: 1.25;
  transition: background 180ms ease, transform 180ms var(--ease-hover);
}

.fact-card:hover {
  background: color-mix(in srgb, var(--color-cream-paper) 24%, transparent);
  transform: translateY(-3px);
}

.hero-facts .info-icon {
  --icon-size: 30px;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--color-cream-paper) 88%, transparent);
}

.hero-facts strong {
  display: block;
  max-width: 100%;
  margin-bottom: 5px;
  color: var(--color-bone-white);
  font-family: var(--font-display);
  font-size: clamp(24px, 13cqw, 36px);
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
}

.fact-card > span:not(.info-icon) {
  white-space: nowrap;
}

.intro,
.section,
.site-footer {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
}

.media-band {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

main > section + section {
  margin-top: var(--section-gap);
}

.apartment-parallax + .features {
  margin-top: 0;
}

.apartment-parallax + .features.reveal {
  opacity: 1;
  transform: none;
}

.features + .location {
  margin-top: 0;
}

.location + .gallery-section {
  margin-top: 0;
}

.visit + .faq {
  margin-top: 0;
}

.faq + .trust {
  margin-top: 0;
}

.features + .location.reveal {
  opacity: 1;
  transform: none;
}

.gallery-section + .floorplans {
  margin-top: 0;
}

.intro {
  padding-block: var(--section-padding);
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--bg-cloud);
}

.intro-grid,
.floorplan-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.intro > .section-kicker,
.intro-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.intro-grid {
  display: block;
}

.intro-grid h2,
.floorplan-head h2 {
  max-width: 930px;
}

.intro-grid .prose,
.floorplan-head > p {
  max-width: 820px;
}

.intro-grid h2,
.intro-grid .prose {
  max-width: none;
}

.intro-grid .prose {
  margin-top: 28px;
}

.intro-grid > *,
.media-band > *,
.split-visual,
.split > *,
.location > *,
.floorplans > *,
.visit > * {
  min-width: 0;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.9vw, 58px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

h3 {
  margin: 0 0 18px;
  color: var(--color-graphite-ink);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 31px);
  font-weight: 400;
  line-height: 1.16;
}

.feature-title-break {
  display: block;
}

.prose p,
.split-content p,
.location-copy p,
.floorplans p,
.visit-card p,
.contact-panel p {
  margin: 0 0 18px;
  color: var(--color-stone-grey);
  font-size: clamp(20px, 1.62vw, 23px);
  line-height: 1.62;
}

.prose p a,
.split-content p a,
.location-copy p a,
.visit-card p a,
.contact-panel p a {
  color: var(--color-sage);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.split-content .section-kicker,
.location-copy .section-kicker,
.floorplans .section-kicker,
.contact-panel .section-kicker {
  color: var(--color-sage);
}

.prose p + p,
.split-content p + p,
.location-copy p + p,
.floorplans p + p,
.visit-card p + p {
  margin-top: 14px;
}

h2 + p,
h2 + .prose,
.split-content h2 + p,
.location-copy h2 + p,
.visit-card h2 + p {
  margin-top: 28px;
}

.split-cta {
  margin-top: 10px;
}

.eyebrow,
.section-kicker,
.unit-label,
.split-content .section-kicker,
.location-copy .section-kicker,
.floorplans .section-kicker,
.visit-card .section-kicker,
.contact-panel .section-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.222em;
  line-height: 1.2;
}

.media-band {
  display: block;
  background: var(--bg-mist);
  overflow: hidden;
}

.media-band video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-nightshade-black);
  cursor: pointer;
  object-fit: cover;
}

.section {
  padding-block: var(--section-padding);
}

.split,
.location,
.visit {
  display: grid;
  gap: clamp(26px, 5vw, 72px);
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  background: var(--bg-cloud);
}

.split-media,
.gallery-item,
.trust-grid figure,
.unit-card,
.contact-panel,
.visit-card {
  border-radius: var(--radius-card);
}

.split-media,
.trust-grid figure,
.contact-panel {
  background: var(--color-bone-white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.split-media img,
.location-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 680px;
  object-fit: cover;
}

.concept-slider {
  position: relative;
}

.concept-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  contain: layout;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.concept-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.concept-track.is-sliding {
  scroll-snap-type: none;
}

.concept-track::-webkit-scrollbar {
  display: none;
}

.concept-track img {
  flex: 0 0 100%;
  scroll-snap-align: start;
  -webkit-user-drag: none;
  user-select: none;
}

.concept-bullets {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--color-graphite-ink) 34%, transparent);
  backdrop-filter: blur(12px);
}

.concept-bullets button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-bone-white) 58%, transparent);
  cursor: pointer;
}

.concept-bullets button.is-active {
  background: var(--color-bone-white);
}

.split-visual .metric-grid {
  margin-top: var(--grid-gap);
}

.apartment-parallax {
  width: 100%;
  min-height: clamp(420px, 52vw, 620px);
  background-color: var(--bg-mist);
  background-image: url("../../Interior/TrendCity-GreenLofts-WE183-(c)-Dajana-Lothert-17.06.2025-Web-4.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1120px), (hover: none) and (pointer: coarse) {
  .apartment-parallax {
    background-attachment: scroll;
  }
}

.metric-grid,
.feature-grid,
.trust-grid,
.logo-strip {
  display: grid;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 26px;
}

.metric-grid div {
  container-type: inline-size;
  min-width: 0;
  min-height: 104px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--color-bone-white);
  box-shadow: var(--shadow-md);
  transition: box-shadow 180ms ease, transform 180ms var(--ease-hover), background 180ms ease;
}

.metric-grid div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.metric-grid .info-icon,
.feature-grid article > .info-icon {
  margin-bottom: 18px;
  color: var(--color-sage);
}

.metric-grid strong {
  display: block;
  max-width: 100%;
  color: var(--color-canopy);
  font-family: var(--font-display);
  font-size: clamp(26px, 13cqw, 36px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--color-sage);
  font-size: 19px;
  line-height: 1.35;
  white-space: nowrap;
}

.features {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--bg-sage);
  color: var(--color-graphite-ink);
}

.features .section-head {
  width: min(var(--max), 100%);
  margin: 0 auto 28px;
}

.features h2 {
  max-width: 820px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.feature-grid article {
  padding: clamp(26px, 2.8vw, 34px);
  border-radius: var(--radius-card);
  background: var(--color-bone-white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms var(--ease-hover), background 180ms ease;
}

.feature-mobile-image {
  display: block;
  width: calc(100% + clamp(52px, 5.6vw, 68px));
  max-width: none;
  aspect-ratio: 16 / 10;
  margin: calc(clamp(26px, 2.8vw, 34px) * -1) calc(clamp(26px, 2.8vw, 34px) * -1) 24px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  object-fit: cover;
}

.metric-grid div:hover,
.feature-grid article:hover,
.unit-card:hover,
.trust-grid figure:hover,
.logo-strip img:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.feature-grid ul {
  display: grid;
  gap: var(--grid-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-grid li {
  position: relative;
  padding-left: 20px;
  color: var(--color-stone-grey);
  font-size: 18.5px;
  line-height: 1.55;
}

.feature-grid li::before {
  content: "";
  position: absolute;
  top: calc((1.55em - 6px) / 2);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-sage);
}

.location {
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 44px);
  background: var(--bg-mist);
}

.location.has-map {
  padding-bottom: 0;
}

.location-image {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.location-points div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 16px;
  align-content: start;
  min-height: 104px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--color-bone-white);
  box-shadow: var(--shadow-md);
  transition: box-shadow 180ms ease, transform 180ms var(--ease-hover), background 180ms ease;
}

.location-points div:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.location-points .info-icon {
  --icon-size: 28px;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  margin-top: 0;
  color: var(--color-sage);
}

.location-points strong {
  grid-column: 2;
  align-self: center;
  display: block;
  color: var(--color-canopy);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-points div > span:not(.info-icon) {
  grid-column: 2;
  display: block;
  margin-top: 8px;
  color: var(--color-stone-grey);
  font-size: 17px;
  line-height: 1.5;
}

.unit-track {
  display: flex;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  contain: layout;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.unit-track:active {
  cursor: grabbing;
}

.unit-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.unit-track.is-sliding {
  scroll-snap-type: none;
}

.unit-track::-webkit-scrollbar {
  display: none;
}

.slider-controls {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  gap: var(--grid-gap);
  width: 100%;
  margin: 16px 0 0;
}

.slider-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-button);
  background: var(--color-sage);
  box-shadow: var(--shadow-sm);
  color: var(--color-canopy);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: box-shadow 180ms ease, transform 180ms var(--ease-hover), background 180ms ease;
}

.gallery-section {
  background: var(--bg-sage);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  align-items: start;
  gap: 28px;
  margin-bottom: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  cursor: zoom-in;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms var(--ease-hover);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--color-canopy) 16%, transparent);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(1) img {
  aspect-ratio: 1 / 1;
}

.gallery-fullscreen-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  padding: 10px;
  border-radius: var(--radius-button);
  background: color-mix(in srgb, var(--color-canopy) 50%, transparent);
  color: var(--color-bone-white);
  pointer-events: none;
}

.gallery-fullscreen-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: url("../../phosphor-icons/SVGs%20Flat/regular/arrows-out.svg") center / contain no-repeat;
  mask: url("../../phosphor-icons/SVGs%20Flat/regular/arrows-out.svg") center / contain no-repeat;
}

.gallery-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.trust {
  background: var(--bg-cloud);
}

.trust .section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.trust-card {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: clamp(300px, 30vw, 380px);
  margin: 0;
  padding: clamp(28px, 3.4vw, 44px);
  color: var(--color-bone-white);
  text-align: center;
}

.trust-grid .trust-card--quote {
  background: var(--color-canopy);
}

.trust-grid .trust-card--satisfaction {
  background: var(--color-mint-pulse);
  color: var(--color-bark);
}

.trust-card h3 {
  margin: 0 0 18px;
  color: inherit;
  font-size: clamp(26px, 2.4vw, 31px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.16;
}

.trust-card blockquote {
  display: grid;
  gap: 14px;
  margin: 0;
}

.trust-card p {
  max-width: 980px;
  margin: 0;
  color: inherit;
  font-size: clamp(20px, 1.62vw, 23px);
  font-weight: 450;
  line-height: 1.62;
  text-wrap: balance;
}

.trust-card cite {
  justify-self: end;
  color: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}

.trust-card strong {
  display: block;
  margin-bottom: 18px;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(54px, 5.4vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.logo-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 14px;
}

.logo-strip img {
  width: 100%;
  height: 112px;
  padding: 14px;
  border-radius: var(--radius-card);
  background: var(--color-bone-white);
  box-shadow: var(--shadow-md);
  object-fit: contain;
  transition: box-shadow 180ms ease, transform 180ms var(--ease-hover);
}

.floorplans {
  display: block;
  width: 100%;
  max-width: none;
  padding-block: var(--section-padding);
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--bg-mist);
}

.floorplan-head {
  width: min(var(--max), 100%);
  margin-inline: auto;
  margin-bottom: 28px;
  align-items: end;
}

.unit-slider {
  position: relative;
  width: min(var(--max), 100%);
  margin-inline: auto;
  overflow: visible;
}

.unit-track {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  gap: var(--grid-gap);
  padding-top: 42px;
  padding-bottom: 72px;
  padding-left: calc(max(18px, calc((100vw - var(--max)) / 2)) + var(--scrollbar-compensation, 0px));
  padding-right: calc(max(18px, calc((100vw - var(--max)) / 2)) + var(--scrollbar-compensation, 0px));
  margin-top: -42px;
  margin-bottom: -72px;
  scroll-padding-left: calc(max(18px, calc((100vw - var(--max)) / 2)) + var(--scrollbar-compensation, 0px));
  scroll-padding-right: calc(max(18px, calc((100vw - var(--max)) / 2)) + var(--scrollbar-compensation, 0px));
}

.unit-card {
  flex: 0 0 clamp(620px, 58vw, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.82fr);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  scroll-snap-align: start;
  transition: box-shadow 180ms ease, transform 180ms var(--ease-hover);
}

.plan-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 34px;
  background: #ffffff;
}

.plan-preview img {
  width: min(100%, 430px);
  max-height: 300px;
  object-fit: contain;
}

.unit-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 38px);
  background: #ffffff;
}

.unit-heading {
  margin-bottom: 12px;
}

.floorplans .unit-label {
  color: var(--color-sage);
  font-size: 12px;
  line-height: 1.2;
}

.unit-heading .unit-label {
  margin: 0;
}

.unit-data dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.unit-data dl div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  font-size: 18px;
}

.unit-data dl div::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--color-sage);
  -webkit-mask: var(--unit-meta-icon) center / contain no-repeat;
  mask: var(--unit-meta-icon) center / contain no-repeat;
}

.unit-data dl div:nth-child(1) {
  --unit-meta-icon: url("../../phosphor-icons/SVGs%20Flat/regular/bed.svg");
}

.unit-data dl div:nth-child(2) {
  --unit-meta-icon: url("../../phosphor-icons/SVGs%20Flat/regular/ruler.svg");
}

.unit-data dl div:nth-child(3) {
  --unit-meta-icon: url("../../phosphor-icons/SVGs%20Flat/regular/star.svg");
}

.unit-data dd {
  grid-column: 2;
  margin: 0;
  color: var(--color-graphite-ink);
  font-size: 18.5px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.unit-link {
  display: inline-flex;
  justify-content: center;
  margin-top: 24px;
  padding: 13px 18px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 180ms ease, transform 180ms var(--ease-hover), background 180ms ease;
}

.slider-controls {
  align-items: center;
  gap: var(--grid-gap);
}

.slider-controls span {
  color: var(--color-sage);
  font-size: 13px;
  font-weight: 600;
}

.location .map-frame {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.map-consent-panel {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-card);
  background: var(--color-bone-white);
  box-shadow: var(--shadow-md);
}

.map-consent-panel[hidden] {
  display: none;
}

.map-consent-panel strong {
  color: var(--color-canopy);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.2;
}

.map-consent-panel p {
  max-width: 680px;
  margin: 0;
  color: var(--color-stone-grey);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 42vw, 520px);
  border: 0;
  box-shadow: var(--shadow-md);
}

.visit {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: var(--grid-gap);
  background: var(--bg-cloud);
}

.visit-card {
  padding: clamp(24px, 4vw, 36px);
  background: var(--color-sage);
  color: var(--color-canopy);
  box-shadow: var(--shadow-xl);
}

.visit-card h2 {
  color: var(--color-canopy);
  font-size: clamp(26px, 2.4vw, 31px);
  line-height: 1.16;
}

.visit-card .section-kicker {
  color: var(--color-bone-white);
}

.visit-card p {
  color: var(--color-canopy);
}

.visit-card .button {
  margin-top: 14px;
  background: var(--color-bone-white);
  color: var(--color-nightshade-black);
}

.contact-panel {
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-md);
}

.contact-panel dl {
  display: grid;
  gap: var(--grid-gap);
  margin: 26px 0 0;
}

.contact-panel dl div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: start;
}

.contact-panel .info-icon {
  --icon-size: 26px;
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: calc((12px * 1.2 - var(--icon-size)) / 2);
  color: var(--color-sage);
}

.contact-panel dt {
  grid-column: 2;
  color: var(--color-charcoal-slate);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-panel dd {
  grid-column: 2;
  margin: 5px 0 0;
  color: var(--color-stone-grey);
  font-size: 18px;
  line-height: 1.45;
}

.contact-form-panel {
  grid-column: 1 / -1;
  background: color-mix(in srgb, var(--color-sage) 30%, var(--color-sheet-white));
}

.contact-modal {
  width: min(760px, calc(100vw - 28px));
  max-height: min(88svh, 920px);
  padding: clamp(24px, 4vw, 38px);
  border: 0;
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--color-sage) 30%, var(--color-sheet-white));
  box-shadow: var(--shadow-xl);
  color: var(--color-canopy);
  overflow: auto;
}

.contact-modal::backdrop {
  background: color-mix(in srgb, var(--color-canopy) 72%, transparent);
}

.contact-modal h3 {
  margin: 0;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  inline-size: 40px;
  block-size: 40px;
  aspect-ratio: 1 / 1;
  padding: 0;
  flex: 0 0 40px;
  border-radius: var(--radius-button);
  background: var(--color-bone-white);
  color: var(--color-canopy);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 26px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label:has(textarea),
.contact-form .contact-options,
.contact-form .privacy-consent,
.contact-form .form-status,
.contact-form .button {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--color-charcoal-slate);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-pale-sage);
  border-radius: var(--radius-button);
  background: var(--color-sheet-white);
  color: var(--color-bark);
  font: inherit;
  opacity: 0.75;
}

.contact-form input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: var(--color-sheet-white);
  opacity: 1;
}

.contact-form input[type="checkbox"]:checked {
  background: var(--color-sheet-white);
}

.contact-form input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-canopy);
  -webkit-mask: url("../../phosphor-icons/SVGs%20Flat/bold/check-bold.svg") center / 15px 15px no-repeat;
  mask: url("../../phosphor-icons/SVGs%20Flat/bold/check-bold.svg") center / 15px 15px no-repeat;
}

.contact-form input {
  min-height: 52px;
  padding: 12px 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-canopy);
  outline: none;
}

.contact-form input.has-error,
.contact-form textarea.has-error {
  border-color: #a43d2f;
  opacity: 1;
}

.field-error {
  min-height: 1.25em;
  color: #a43d2f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.privacy-consent .field-error {
  grid-column: 2;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-checkbox,
.room-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.option-checkbox {
  align-items: center;
}

.room-options {
  padding-left: 28px;
}

.contact-form .option-checkbox span {
  color: var(--color-canopy);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.contact-form .button {
  justify-self: start;
  min-width: 220px;
}

.privacy-consent,
.option-checkbox {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
}

.privacy-consent span {
  color: var(--color-stone-grey);
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--color-stone-grey);
  font-size: 14px;
}

.form-status.is-success {
  color: var(--color-canopy);
  font-weight: 650;
}

.form-status.is-error {
  color: #a43d2f;
  font-weight: 650;
}

.faq {
  background: var(--bg-sage);
}

.faq-head {
  margin-bottom: 30px;
}

.faq .section-kicker {
  color: var(--color-sage);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(var(--max), 100%);
}

.faq-item {
  border-radius: var(--radius-card);
  background: var(--color-bone-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 58px 22px 24px;
  color: var(--color-charcoal-slate);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    linear-gradient(var(--color-bone-white), var(--color-bone-white)) center / 12px 2px no-repeat,
    linear-gradient(var(--color-bone-white), var(--color-bone-white)) center / 2px 12px no-repeat,
    var(--color-sage);
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  background:
    linear-gradient(var(--color-bone-white), var(--color-bone-white)) center / 12px 2px no-repeat,
    var(--color-sage);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--color-stone-grey);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.6;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--grid-gap);
  width: min(720px, calc(100vw - 36px));
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--color-sheet-white);
  box-shadow: var(--shadow-xl);
  color: var(--color-bark);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  color: var(--color-bark);
  font-weight: 700;
}

.cookie-consent p {
  margin: 6px 0 0;
  color: var(--color-stone-grey);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button.ghost {
  background: var(--bg-cloud);
  color: var(--color-canopy);
}

.site-footer {
  padding-block: clamp(44px, 4vw, 74px);
  background: var(--bg-sage);
  color: var(--color-forest-ink);
  overflow-x: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 48px);
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.footer-logo {
  display: block;
  width: min(210px, 70%);
  height: auto;
}

.footer-grid h4 {
  margin: 0 0 14px;
  color: var(--color-forest-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact,
.footer-social {
  display: grid;
  gap: 8px;
}

.footer-contact {
  font-style: normal;
}

.footer-grid a,
.footer-grid button,
.footer-grid span {
  color: var(--color-forest-ink);
  font-size: clamp(15px, 0.94vw, 18px);
  line-height: 1.52;
  white-space: nowrap;
}

.footer-grid a,
.footer-grid button {
  width: fit-content;
  transition: color 180ms ease;
}

.footer-grid button {
  display: inline;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-grid button:hover,
.footer-grid button:focus-visible {
  color: var(--color-canopy);
}

.footer-social {
  grid-template-columns: repeat(3, 32px);
  align-items: center;
  justify-content: start;
}

.footer-social-link {
  --footer-social-icon: url("../../green-lofts-trendcity/03-images/logos-siegel-social/021-social_icon_new_insta.svg");
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.footer-social-link::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: var(--color-charcoal-slate);
  transition: background-color 180ms ease;
  -webkit-mask-image: var(--footer-social-icon);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: var(--footer-social-icon);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.footer-social-link:hover::before,
.footer-social-link:focus-visible::before {
  background: var(--color-sage);
}

.footer-social-link--instagram {
  --footer-social-icon: url("../../green-lofts-trendcity/03-images/logos-siegel-social/021-social_icon_new_insta.svg");
}

.footer-social-link--facebook {
  --footer-social-icon: url("../../green-lofts-trendcity/03-images/logos-siegel-social/020-social_icon_new_fb.svg");
}

.footer-social-link--newsletter {
  --footer-social-icon: url("../../green-lofts-trendcity/03-images/logos-siegel-social/022-social_icon_new_newsletter.svg");
}

.lightbox {
  width: min(1120px, calc(100vw - 24px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-card);
  background: transparent;
}

.lightbox::backdrop {
  background: color-mix(in srgb, var(--color-bark) 86%, transparent);
}

.lightbox img {
  width: 100%;
  max-height: 88svh;
  border-radius: var(--radius-card);
  object-fit: contain;
  background: var(--color-nightshade-black);
  touch-action: pan-y;
  user-select: none;
}

.lightbox-caption,
.lightbox-close,
.lightbox-nav {
  background: color-mix(in srgb, var(--color-bark) 78%, transparent);
  color: var(--color-bone-white);
}

.lightbox-caption {
  position: fixed;
  left: 50%;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  transform: translateX(-50%);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  inline-size: 44px;
  block-size: 44px;
  aspect-ratio: 1 / 1;
  padding: 0;
  flex: 0 0 44px;
  border-radius: var(--radius-button);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  min-width: 48px;
  max-width: 48px;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  inline-size: 48px;
  block-size: 48px;
  aspect-ratio: 1 / 1;
  padding: 0;
  flex: 0 0 48px;
  border-radius: var(--radius-button);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

@media (max-width: 1120px) {
  .hero-facts {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    width: min(620px, calc(100% - 32px));
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 78px 12px auto 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius-card);
    background: var(--color-bone-white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: var(--radius-button);
  }

  .language-switch {
    justify-content: center;
    padding: 14px 12px;
  }

  .site-nav a:hover {
    background: var(--color-linen-canvas);
  }

  .nav-cta {
    text-align: center;
  }

  .intro-grid,
  .floorplan-head,
  .gallery-head,
  .media-band,
  .split,
  .location,
  .visit {
    grid-template-columns: 1fr;
  }

  .split {
    gap: var(--section-padding);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-title-break {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --section-gap: 0px;
    --section-padding: 48px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .header-offer-bar {
    padding-inline: 12px;
  }

  .header-offer-bar strong {
    font-size: clamp(10px, 3.2vw, 12px);
  }

  .hero {
    min-height: 94svh;
    padding: 96px 16px 188px;
  }

  .hero picture {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .hero-offer-badge {
    margin-top: 18px;
    padding: 12px 15px;
    width: min(100%, 340px);
  }

  .hero-offer-badge span {
    font-size: 9px;
  }

  .hero-offer-badge strong {
    font-size: clamp(13px, 4vw, 16px);
  }

  .hero-copy {
    display: none;
  }

  .button {
    width: 100%;
  }

  .contact-modal-close {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    inline-size: 40px;
  }

  .hero-actions {
    display: none;
  }

  .hero-facts {
    bottom: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 24px);
  }

  .fact-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 1px;
    align-items: center;
    align-content: center;
    min-height: 76px;
    padding: 11px 10px;
    font-size: clamp(11px, 3.35vw, 14px);
  }

  .hero-facts .info-icon {
    --icon-size: 20px;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .hero-facts strong {
    margin: 0;
    font-size: clamp(13px, 4vw, 17px);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .fact-card > span:not(.info-icon) {
    grid-column: 2;
    white-space: nowrap;
  }

  .intro,
  .section {
    padding-block: var(--section-padding);
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
    font-weight: 650;
    line-height: 1.12;
  }

  h3 {
    font-size: 25px;
    font-weight: 650;
    line-height: 1.18;
  }

  .prose p,
  .split-content p,
  .location-copy p,
  .floorplans p,
  .visit-card p,
  .contact-panel p {
    font-size: 19px;
    font-weight: 500;
  }

  .visit-card h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .media-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .media-band video {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  .apartment-parallax {
    min-height: auto;
    aspect-ratio: 16 / 9;
    background-attachment: scroll;
    background-size: cover;
  }

  .metric-grid,
  .gallery-grid,
  .location-points,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }

  .metric-grid div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
  }

  .metric-grid .info-icon {
    --icon-size: 51px;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .metric-grid strong {
    grid-column: 2;
    font-size: 32px;
    font-weight: 700;
  }

  .metric-grid div > span:not(.info-icon) {
    grid-column: 2;
    margin-top: 0;
    font-size: 19px;
    font-weight: 500;
  }

  .feature-grid li,
  .unit-data dd,
  .location-points div > span:not(.info-icon),
  .contact-panel dd,
  .trust-card p {
    font-weight: 500;
  }

  .location-points strong,
  .contact-panel dt,
  .trust-card h3,
  .trust-card strong {
    font-weight: 700;
  }

  .features {
    padding-inline: 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    aspect-ratio: 1 / 1;
  }

  .unit-card {
    grid-template-columns: 1fr;
    flex-basis: calc(100vw - 36px);
  }

  .plan-preview {
    min-height: 230px;
    padding: 30px 22px 22px;
  }

  .plan-preview img {
    max-height: 230px;
  }

  .logo-strip img {
    height: 96px;
    padding: 16px;
  }

  .trust-card {
    min-height: auto;
    padding: 30px 22px;
  }

  .trust-card h3 {
    font-size: 25px;
  }

  .trust-card p {
    font-size: 19px;
  }

  .trust-card cite {
    justify-self: center;
    font-size: 18px;
  }

  .trust-card strong {
    font-size: clamp(48px, 15vw, 64px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-logo {
    width: min(190px, 72vw);
    margin-inline: auto;
  }

  .footer-nav,
  .footer-contact {
    justify-items: center;
  }

  .footer-grid a {
    justify-self: center;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 44px;
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    inline-size: 44px;
    block-size: 44px;
    flex-basis: 44px;
    transform: none;
  }

  .lightbox-caption {
    bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .unit-track {
    animation: none !important;
  }
}
