:root {
  --pine: #143f22;
  --pine-2: #0f2e1a;
  --leaf: #2f6c3e;
  --sage: #78907b;
  --mint: #eef7ee;
  --paper: #fffdf7;
  --mist: #f7fbf4;
  --sky: #e8f4f8;
  --graphite: #263630;
  --rose: #d78d99;
  --ink: #1e241f;
  --muted: #657064;
  --line: rgba(20, 63, 34, .14);
  --soft-line: rgba(20, 63, 34, .08);
  --white: #fff;
  --shadow: 0 24px 78px rgba(30, 47, 34, .13);
  --small-shadow: 0 14px 38px rgba(30, 47, 34, .1);
  --radius: 8px;
  --button-radius: 3px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fbfff9 0%, #f8fbf5 42%, #fffdf7 100%);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 63, 34, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 63, 34, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

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

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

button {
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.wrap {
  width: min(1220px, calc(100vw - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(20, 63, 34, .1);
  background: rgba(255, 253, 247, .88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand img {
  width: 200px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: #263027;
  font-size: 13px;
  font-weight: 770;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .01em;
  box-shadow: 0 10px 24px rgba(30, 47, 34, .09);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #1f5b35, var(--pine));
  border-color: rgba(20, 63, 34, .34);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(20, 63, 34, .18);
}

.btn-soft {
  color: var(--pine);
  background: #fffdf7;
  border-color: rgba(20, 63, 34, .2);
}

.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(180deg, #1f7c46, #0f5f34);
  border-color: rgba(15, 95, 52, .34);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--button-radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  color: var(--pine);
  display: none;
  place-items: center;
  cursor: pointer;
  font-weight: 900;
}

.mobile-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 247, .96);
  transition: max-height .28s ease, opacity .22s ease, transform .22s ease;
}

.mobile-menu.is-open {
  max-height: 460px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 15px 18px;
  border-bottom: 1px solid var(--soft-line);
  color: var(--pine);
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--leaf);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 850;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--pine);
}

.title-xl {
  font-size: 82px;
  line-height: .9;
}

.title-xl em,
.section-title em,
.hero-title em {
  color: var(--leaf);
  font-style: italic;
}

.hero-title {
  font-size: 66px;
  line-height: .93;
}

.section-title {
  font-size: 52px;
  line-height: .97;
}

.lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
  font-size: 16px;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding-top: 48px;
}

.section.slim {
  padding: 54px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 500px);
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #f8fbf4;
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(248, 251, 244, .72) 0%, rgba(248, 251, 244, .36) 34%, rgba(248, 251, 244, .05) 72%),
    linear-gradient(180deg, rgba(248, 251, 244, .02), rgba(248, 251, 244, .24));
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8%;
  right: 28%;
  bottom: -1px;
  height: 168px;
  background: rgba(247, 251, 244, .96);
  border-top: 1px solid rgba(20, 63, 34, .12);
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.home-hero-image {
  position: absolute;
  inset: 0 0 0 27%;
  z-index: -3;
  overflow: hidden;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(calc(1.015 + var(--scroll, 0) * .035)) translateY(calc(var(--scroll, 0) * -12px));
}

.home-topline {
  position: relative;
  z-index: 10;
  width: min(1280px, calc(100vw - 36px));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: center;
}

.home-brand img {
  width: 194px;
  height: auto;
}

.home-menu-toggle {
  display: none;
}

.home-hero-nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  width: max-content;
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid rgba(20, 63, 34, .16);
  border-radius: var(--button-radius);
  background: rgba(255, 253, 247, .9);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(20, 35, 24, .11);
  color: var(--pine-2);
  font-size: 13px;
  font-weight: 760;
}

.home-hero-nav a {
  padding: 10px 0;
}

.home-hero-nav a.is-active {
  color: var(--leaf);
}

.home-hero-copy {
  width: min(1280px, calc(100vw - 36px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 34px 0 178px;
}

.home-hero-copy-inner {
  max-width: 620px;
}

.home-hero .lede {
  max-width: 620px;
  margin-top: 20px;
}

.home-proofline {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--pine-2);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.45;
}

.home-vertical-word {
  position: absolute;
  z-index: 9;
  right: 28px;
  top: 130px;
  color: rgba(20, 63, 34, .72);
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 850;
}

.home-threshold {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: 42px;
  width: min(1280px, calc(100vw - 36px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1.08fr repeat(3, .92fr);
  border: 1px solid rgba(20, 63, 34, .18);
  background: rgba(255, 253, 247, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 80px rgba(30, 47, 34, .15);
}

.threshold-item {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid var(--soft-line);
}

.threshold-item:last-child {
  border-right: 0;
}

.threshold-item.is-lead {
  background: rgba(238, 247, 238, .92);
}

.threshold-item b {
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: .9;
}

.threshold-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.home-bridge {
  position: relative;
  padding: 48px 0 78px;
  background:
    linear-gradient(90deg, rgba(20, 63, 34, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 63, 34, .03) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbf4, #fffdf7 92%);
  background-size: 72px 72px, 72px 72px, auto;
}

.bridge-inner {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 24px;
  align-items: stretch;
}

.bridge-copy {
  padding: 30px;
  border-left: 7px solid var(--graphite);
  background: rgba(255, 255, 255, .78);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--small-shadow);
}

.bridge-copy h2 {
  margin-top: 12px;
  color: var(--pine);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: .96;
}

.bridge-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.bridge-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bridge-list div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--small-shadow);
}

.bridge-list b {
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: .92;
}

.bridge-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.developer-strip {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(320px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 247, 238, .88) 62%, rgba(232, 244, 248, .66));
  box-shadow: var(--small-shadow);
  position: relative;
  overflow: hidden;
}

.developer-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--leaf), var(--graphite));
}

.developer-strip > * {
  position: relative;
  z-index: 1;
}

.developer-mark {
  display: grid;
  gap: 8px;
}

.developer-mark span,
.choice-card span {
  color: var(--leaf);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 11px;
  font-weight: 850;
}

.developer-mark b {
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 400;
  line-height: .96;
}

.developer-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(calc(1.02 + var(--scroll, 0) * .045));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 255, 251, .92) 0%, rgba(251, 255, 251, .64) 40%, rgba(251, 255, 251, .08) 76%),
    linear-gradient(180deg, rgba(251, 255, 251, .08), rgba(251, 255, 251, .74) 96%);
}

.hero-copy {
  max-width: 720px;
  min-height: 620px;
  display: grid;
  align-content: center;
  padding-bottom: 40px;
}

.hero-copy .lede {
  max-width: 620px;
  margin-top: 20px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.page-intro {
  position: relative;
  overflow: hidden;
  padding: 72px 0 46px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(238, 247, 238, .92), rgba(255, 253, 247, .96) 58%, rgba(232, 244, 248, .72));
}

.page-intro::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(20, 63, 34, .1);
  border-radius: 50%;
  background: rgba(255, 255, 255, .36);
  pointer-events: none;
}

.page-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 360px);
  gap: 28px;
  align-items: end;
}

.page-intro .lede {
  max-width: 720px;
  margin-top: 16px;
}

.page-intro-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  padding: 22px;
  box-shadow: var(--small-shadow);
}

.page-intro-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.page-intro-card b {
  display: block;
  color: var(--pine);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.page-intro-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--pine);
  background: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 820;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--small-shadow);
}

.stat {
  min-height: 112px;
  padding: 22px;
  background: rgba(255, 255, 255, .88);
  display: grid;
  align-content: center;
  gap: 6px;
}

.stat b {
  color: var(--pine);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.chapter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.chapter-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -8px 0 26px;
  border: 1px solid var(--line);
  background: rgba(20, 63, 34, .12);
  box-shadow: var(--small-shadow);
}

.chapter-tabs a {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 253, 247, .9);
  color: var(--pine);
  font-size: 13px;
  font-weight: 820;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.chapter-tabs a:hover {
  background: rgba(238, 247, 238, .96);
  transform: translateY(-1px);
}

.chapter-tabs span {
  color: var(--graphite);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.chapter-list {
  display: grid;
  gap: 22px;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.chapter:nth-child(even) .chapter-copy {
  order: 2;
}

.chapter:nth-child(even) .image-tile {
  order: 1;
}

.chapter-copy {
  min-height: clamp(280px, 30vw, 420px);
  padding: 24px 0;
  display: grid;
  align-content: center;
}

.chapter .image-tile {
  height: clamp(280px, 30vw, 420px);
  min-height: 0;
}

.chapter-copy h2,
.chapter-copy h3 {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 12px;
}

.chapter-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.image-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe8df;
  box-shadow: var(--small-shadow);
  isolation: isolate;
  transform: translateZ(0);
}

.image-tile[data-lightbox] {
  cursor: zoom-in;
}

.image-tile[data-lightbox]:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 4px;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.001);
  transform-origin: center;
  will-change: transform;
  transition: transform .75s ease, filter .75s ease;
}

.image-tile:hover img {
  transform: translateZ(0) scale(1.045);
  filter: saturate(1.04);
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, .42), transparent 62%);
  pointer-events: none;
}

.plain-image::after {
  display: none;
}

.plan-image {
  background: #f7fbf4;
}

.plan-image img {
  object-fit: contain;
  padding: 12px;
}

.standard-floor-plan {
  min-height: 0;
  height: clamp(420px, 72vw, 760px);
  background: #fff;
}

.standard-floor-plan img {
  padding: 14px;
}

.interactive-plan-card {
  overflow: visible;
}

.plan-hotspot-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.plan-hotspot-layer {
  position: absolute;
  inset: 14px;
  z-index: 5;
  pointer-events: none;
}

.plan-hotspot {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 132px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 63, 34, .24);
  border-radius: var(--button-radius);
  background: rgba(255, 253, 247, .9);
  color: var(--pine);
  box-shadow: 0 14px 32px rgba(30, 47, 34, .13);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.plan-hotspot:hover {
  transform: translateY(-2px);
  background: rgba(238, 247, 238, .94);
  border-color: rgba(20, 63, 34, .36);
}

.plan-hotspot span {
  font-size: 12px;
  font-weight: 880;
  line-height: 1.15;
}

.plan-hotspot b {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
}

.plan-hotspot-a-kose {
  left: 7%;
  top: 13%;
}

.plan-hotspot-a-orta {
  left: 30%;
  top: 18%;
}

.plan-hotspot-b-orta {
  right: 30%;
  top: 18%;
}

.plan-hotspot-b-kose {
  right: 7%;
  top: 13%;
}

.tile-label {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
  opacity: .94;
  transform: translateY(6px);
  transition: opacity .26s ease, transform .26s ease;
}

.image-tile:hover .tile-label {
  opacity: 1;
  transform: translateY(0);
}

.plan-image .tile-label {
  color: var(--pine);
  text-shadow: none;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, .92);
  box-shadow: 0 12px 28px rgba(30, 47, 34, .1);
}

.tile-label b {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.tile-label span {
  font-size: 12px;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}

.gallery-grid .image-tile:nth-child(1) { grid-column: span 7; grid-row: span 4; }
.gallery-grid .image-tile:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery-grid .image-tile:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.gallery-grid .image-tile:nth-child(4) { grid-column: span 4; grid-row: span 3; }
.gallery-grid .image-tile:nth-child(5) { grid-column: span 4; grid-row: span 3; }
.gallery-grid .image-tile:nth-child(6) { grid-column: span 4; grid-row: span 3; }

.masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 116px;
  grid-auto-flow: dense;
  gap: 16px;
}

.masonry .image-tile {
  min-height: 0;
}

.masonry .image-tile:nth-child(1) {
  grid-column: span 5;
  grid-row: span 4;
}

.masonry .image-tile:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

.masonry .image-tile:nth-child(3) {
  grid-column: span 3;
  grid-row: span 2;
}

.masonry .image-tile:nth-child(4) {
  grid-column: span 4;
  grid-row: span 3;
}

.masonry .image-tile:nth-child(5) {
  grid-column: span 4;
  grid-row: span 2;
}

.masonry .image-tile:nth-child(6) {
  grid-column: span 4;
  grid-row: span 2;
}

.masonry .image-tile:nth-child(7),
.masonry .image-tile:nth-child(8) {
  grid-column: span 4;
  grid-row: span 2;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand-standard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 251, 244, .95) 58%, rgba(232, 244, 248, .72));
  box-shadow: var(--small-shadow);
  padding: 30px 0 18px;
}

.brand-standard::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--leaf), var(--graphite));
}

.brand-standard-copy {
  width: min(100% - 56px, 920px);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) 1fr;
  gap: 26px;
  align-items: end;
}

.brand-standard-copy .eyebrow {
  grid-column: 1 / -1;
}

.brand-standard-copy h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: .96;
}

.brand-standard-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.brand-marquee {
  overflow: hidden;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  background: rgba(255, 253, 247, .7);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-track {
  width: max-content;
  display: flex;
  gap: 12px;
  padding: 18px 0;
  animation: brand-scroll 72s linear infinite;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-logo {
  width: 166px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 63, 34, .16);
  border-radius: var(--button-radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(30, 47, 34, .07);
  padding: 12px 16px;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes brand-scroll {
  to {
    transform: translateX(-50%);
  }
}

.fine-print {
  width: min(100% - 56px, 920px);
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.info-card,
.apartment-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--small-shadow);
}

.info-card {
  padding: 24px;
  min-height: 210px;
}

.info-card h3 {
  font-size: 29px;
  line-height: 1;
  margin-bottom: 12px;
}

.info-card p,
.apartment-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  padding: 30px;
  box-shadow: var(--small-shadow);
}

.panel.dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 247, 238, .9) 58%, rgba(232, 244, 248, .74));
  color: var(--ink);
  border-color: rgba(20, 63, 34, .16);
}

.panel.dark::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--leaf), var(--graphite));
}

.panel.dark h2,
.panel.dark h3 {
  color: var(--pine);
}

.panel.dark p,
.panel.dark li {
  color: var(--muted);
}

.panel h2 {
  font-size: 42px;
  line-height: 1.02;
  margin-bottom: 14px;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.spec-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.panel.dark .spec-list div {
  border-top-color: rgba(20, 63, 34, .13);
  color: var(--muted);
}

.spec-list b {
  color: var(--pine);
}

.panel.dark .spec-list b {
  color: var(--pine);
}

.apartment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.apartment-card {
  min-height: 360px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}

.apartment-plan {
  min-height: 170px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(20, 63, 34, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 63, 34, .08) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
}

.apartment-plan::before,
.apartment-plan::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(20, 63, 34, .58);
  border-radius: 6px;
}

.apartment-plan::before {
  left: 22px;
  right: 42%;
  top: 28px;
  bottom: 28px;
}

.apartment-plan::after {
  left: 48%;
  right: 22px;
  top: 44px;
  bottom: 28px;
}

.apartment-body {
  padding: 22px;
}

.apartment-body h3 {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}

.apartment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.apartment-detail-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.apartment-detail-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--soft-line);
  padding-top: 8px;
}

.apartment-detail-list b {
  color: var(--pine);
  text-align: right;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr .95fr;
  gap: 16px;
}

.choice-card {
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--small-shadow);
  position: relative;
  overflow: hidden;
}

.choice-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: rgba(20, 63, 34, .16);
}

.choice-card.is-featured {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 247, 238, .9) 62%, rgba(232, 244, 248, .68));
}

.choice-card.is-featured::before {
  background: linear-gradient(90deg, var(--leaf), var(--graphite));
}

.choice-card h3 {
  font-size: 31px;
  line-height: 1;
}

.choice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
  font-size: 14px;
}

.choice-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.choice-card li {
  padding-top: 8px;
  border-top: 1px solid var(--soft-line);
  color: var(--pine);
  font-size: 13px;
  font-weight: 820;
}

.plan-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  overflow: hidden;
  box-shadow: var(--small-shadow);
}

.plan-card.interactive-plan-card {
  overflow: visible;
}

.plan-page-grid .plan-image {
  height: clamp(420px, 56vw, 620px);
  background: #fff;
}

.floor-scheme {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(20, 63, 34, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 63, 34, .08) 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
}

.unit {
  position: absolute;
  border: 2px solid rgba(20, 63, 34, .65);
  border-radius: 6px;
  background: rgba(238, 247, 238, .8);
  display: grid;
  place-items: center;
  color: var(--pine);
  font-weight: 850;
  text-align: center;
  padding: 10px;
}

.unit.corner-left { left: 34px; top: 36px; width: 34%; height: 38%; }
.unit.middle-left { left: 34px; bottom: 36px; width: 34%; height: 34%; }
.unit.middle-right { right: 34px; bottom: 36px; width: 34%; height: 34%; }
.unit.corner-right { right: 34px; top: 36px; width: 34%; height: 38%; }
.unit.core { left: 42%; right: 42%; top: 34px; bottom: 34px; background: rgba(38, 54, 48, .12); color: var(--graphite); }

.plan-card-body {
  padding: 24px;
}

.plan-card-body h3 {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}

.plan-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--small-shadow);
}

.comparison-cards {
  display: none;
}

.comparison-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--small-shadow);
  padding: 18px;
}

.comparison-cards h3 {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 14px;
}

.comparison-cards ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-cards li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--soft-line);
}

.comparison-cards li span {
  color: var(--muted);
  font-size: 13px;
}

.comparison-cards li b {
  color: var(--pine);
  font-size: 13px;
  font-weight: 820;
  text-align: right;
}

.fine-print + .apartment-grid,
.fine-print + .gallery-grid,
.fine-print + .plan-page-grid {
  margin-top: 18px;
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--soft-line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--pine);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

td {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.map-contact {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 20px;
  align-items: stretch;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 247, 238, .94) 62%, rgba(232, 244, 248, .8));
  color: var(--ink);
  padding: 30px;
  display: grid;
  align-content: center;
  gap: 18px;
  box-shadow: var(--small-shadow);
  overflow: hidden;
  position: relative;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--leaf), var(--graphite));
}

.contact-panel h2 {
  color: var(--pine);
  font-size: 42px;
  line-height: 1.02;
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(20, 63, 34, .14);
  color: var(--pine);
  font-weight: 800;
}

.contact-links a span {
  color: var(--muted);
  font-weight: 720;
  text-align: right;
  overflow-wrap: anywhere;
}

.map {
  min-height: 440px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--mint);
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: saturate(.82) contrast(.96);
}

.cta-band {
  margin: 28px 0 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 247, 238, .94) 58%, rgba(255, 253, 247, .98));
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--leaf), var(--graphite));
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2,
.cta-band h3 {
  color: var(--pine);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 34px;
  background: rgba(255, 253, 247, .64);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-col a,
.footer-col p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.footer-brand .project-owner {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--soft-line);
  color: var(--pine);
  font-weight: 760;
}

.footer-brand .project-owner a {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-col h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  padding: 5px 0;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--soft-line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
}

.quickbar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 100;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.quickbar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: var(--button-radius);
  border: 1px solid rgba(20, 63, 34, .16);
  background: linear-gradient(180deg, #eef8ee, #dff1e3);
  color: var(--pine);
  font-size: 13px;
  font-weight: 840;
}

.quickbar a::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

.quickbar a:nth-child(1)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.11 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.72c.12.92.33 1.81.63 2.66a2 2 0 0 1-.45 2.11L8 9.79a16 16 0 0 0 6.21 6.21l1.3-1.28a2 2 0 0 1 2.11-.45c.85.3 1.74.51 2.66.63A2 2 0 0 1 22 16.92Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.11 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.72c.12.92.33 1.81.63 2.66a2 2 0 0 1-.45 2.11L8 9.79a16 16 0 0 0 6.21 6.21l1.3-1.28a2 2 0 0 1 2.11-.45c.85.3 1.74.51 2.66.63A2 2 0 0 1 22 16.92Z' fill='black'/%3E%3C/svg%3E");
}

.quickbar a:nth-child(2) {
  background: linear-gradient(180deg, #1f7c46, #0f5f34);
  border-color: rgba(15, 95, 52, .3);
  color: var(--white);
}

.quickbar a:nth-child(2)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.56 12.56 0 0 0 5.14 22.03L3.7 28.5l6.58-1.72A12.56 12.56 0 1 0 16.02 3.2Zm0 2.23a10.33 10.33 0 0 1 8.8 15.76 10.29 10.29 0 0 1-12.95 4.1l-.48-.23-3.9 1.02.85-3.84-.26-.5A10.34 10.34 0 0 1 16.02 5.43Zm-4.44 5.14c-.25 0-.66.1-1.01.48-.35.38-1.33 1.3-1.33 3.16s1.36 3.67 1.55 3.92c.19.26 2.63 4.22 6.48 5.75 3.2 1.27 3.85.99 4.54.93.7-.06 2.25-.92 2.56-1.8.32-.9.32-1.66.22-1.81-.1-.16-.35-.26-.73-.45-.39-.2-2.26-1.12-2.61-1.24-.35-.13-.6-.2-.86.19-.25.38-.99 1.24-1.21 1.5-.22.25-.45.28-.83.1-.39-.2-1.62-.6-3.08-1.9-1.14-1.01-1.91-2.27-2.14-2.65-.22-.39-.02-.6.17-.79.17-.17.38-.45.57-.67.19-.23.25-.39.38-.64.13-.26.06-.48-.03-.67-.1-.2-.86-2.07-1.18-2.84-.31-.74-.62-.64-.86-.65h-.73Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.56 12.56 0 0 0 5.14 22.03L3.7 28.5l6.58-1.72A12.56 12.56 0 1 0 16.02 3.2Zm0 2.23a10.33 10.33 0 0 1 8.8 15.76 10.29 10.29 0 0 1-12.95 4.1l-.48-.23-3.9 1.02.85-3.84-.26-.5A10.34 10.34 0 0 1 16.02 5.43Zm-4.44 5.14c-.25 0-.66.1-1.01.48-.35.38-1.33 1.3-1.33 3.16s1.36 3.67 1.55 3.92c.19.26 2.63 4.22 6.48 5.75 3.2 1.27 3.85.99 4.54.93.7-.06 2.25-.92 2.56-1.8.32-.9.32-1.66.22-1.81-.1-.16-.35-.26-.73-.45-.39-.2-2.26-1.12-2.61-1.24-.35-.13-.6-.2-.86.19-.25.38-.99 1.24-1.21 1.5-.22.25-.45.28-.83.1-.39-.2-1.62-.6-3.08-1.9-1.14-1.01-1.91-2.27-2.14-2.65-.22-.39-.02-.6.17-.79.17-.17.38-.45.57-.67.19-.23.25-.39.38-.64.13-.26.06-.48-.03-.67-.1-.2-.86-2.07-1.18-2.84-.31-.74-.62-.64-.86-.65h-.73Z' fill='black'/%3E%3C/svg%3E");
}

.quickbar a:nth-child(3) {
  background: #fffdf7;
  color: var(--pine);
}

.quickbar a:nth-child(3)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z' fill='black'/%3E%3C/svg%3E");
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10, 18, 12, .82);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  touch-action: none;
  transition: opacity .24s ease, visibility .24s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(.965);
  transform-origin: center;
  touch-action: none;
  cursor: zoom-in;
  will-change: transform;
  transition: opacity .26s ease, transform .26s ease;
}

.lightbox.is-open img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.lightbox button {
  position: absolute;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  backdrop-filter: blur(12px);
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.lightbox button:hover {
  background: rgba(255, 255, 255, .2);
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 76px;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  min-width: 68px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 13px;
  font-weight: 820;
  backdrop-filter: blur(12px);
}

.lightbox.is-zoomed img {
  cursor: grab;
}

.lightbox.is-panning img {
  cursor: grabbing;
}

.lightbox button[hidden],
.lightbox-counter[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1080px) {
  .home-topline {
    min-height: 76px;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    padding-top: 14px;
  }

  .home-brand img {
    width: 150px;
  }

  .home-hero-nav {
    justify-self: start;
    width: min(100%, 720px);
    justify-content: flex-start;
    overflow-x: auto;
    gap: 18px;
    scrollbar-width: none;
  }

  .home-hero-nav::-webkit-scrollbar {
    display: none;
  }

  .home-hero-image {
    inset: 0;
    clip-path: none;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(248, 251, 244, .7), rgba(248, 251, 244, .18) 58%, rgba(248, 251, 244, .08)),
      linear-gradient(180deg, rgba(248, 251, 244, .48), rgba(248, 251, 244, .34) 56%, rgba(248, 251, 244, .72));
  }

  .home-hero::after {
    left: -12%;
    right: -12%;
    height: 150px;
  }

  .home-threshold {
    bottom: 28px;
    grid-template-columns: repeat(2, 1fr);
  }

  .threshold-item {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .threshold-item:nth-child(odd) {
    border-right: 1px solid var(--soft-line);
  }

  .threshold-item:nth-child(n+3) {
    border-bottom: 0;
  }

  .bridge-inner {
    grid-template-columns: 1fr;
  }

  .developer-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-vertical-word {
    display: none;
  }

  .header-inner {
    grid-template-columns: 190px 1fr auto;
  }

  .brand img {
    width: 170px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .chapter-grid,
  .split,
  .map-contact {
    grid-template-columns: 1fr;
  }

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

  .chapter-copy {
    min-height: 0;
  }

  .chapter .image-tile {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .stats,
  .apartment-grid,
  .choice-grid,
  .card-grid,
  .plan-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-auto-rows: 100px;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .wrap,
  .home-topline,
  .home-hero-copy,
  .home-threshold {
    width: min(100% - 24px, 1220px);
  }

  .home-hero {
    min-height: 790px;
  }

  .home-topline {
    min-height: auto;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px;
    border: 1px solid rgba(20, 63, 34, .15);
    border-radius: var(--button-radius);
    background: rgba(255, 253, 247, .9);
    box-shadow: 0 16px 42px rgba(20, 35, 24, .13);
    backdrop-filter: blur(16px);
  }

  .home-brand {
    display: flex;
    justify-content: flex-start;
    padding: 4px 0;
    border-bottom: 0;
  }

  .home-brand img {
    width: 168px;
  }

  .home-menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(20, 63, 34, .16);
    border-radius: var(--button-radius);
    background: rgba(255, 255, 255, .58);
    color: var(--pine);
    cursor: pointer;
  }

  .home-menu-toggle span,
  .home-menu-toggle span::before,
  .home-menu-toggle span::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform .22s ease, opacity .18s ease;
  }

  .home-menu-toggle span {
    position: relative;
    font-size: 0;
    line-height: 0;
  }

  .home-menu-toggle span::before,
  .home-menu-toggle span::after {
    position: absolute;
    left: 0;
  }

  .home-menu-toggle span::before {
    top: -6px;
  }

  .home-menu-toggle span::after {
    top: 6px;
  }

  .home-topline.is-menu-open .home-menu-toggle span {
    transform: rotate(45deg);
  }

  .home-topline.is-menu-open .home-menu-toggle span::before {
    transform: translateY(6px) rotate(90deg);
  }

  .home-topline.is-menu-open .home-menu-toggle span::after {
    opacity: 0;
  }

  .home-hero-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 10px;
    gap: 6px;
    border: 1px solid rgba(20, 63, 34, .15);
    background: rgba(255, 253, 247, .94);
    box-shadow: 0 18px 54px rgba(20, 35, 24, .16);
    backdrop-filter: blur(18px);
    white-space: normal;
    overflow: visible;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  .home-topline.is-menu-open .home-hero-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .home-hero-nav a {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 8px;
    border-radius: var(--button-radius);
    border: 1px solid rgba(20, 63, 34, .1);
    background: rgba(255, 255, 255, .58);
    color: var(--pine);
    text-align: center;
    font-size: 11px;
    font-weight: 820;
    line-height: 1.08;
  }

  .home-hero-nav a.is-active {
    color: var(--white);
    background: var(--pine);
    border-color: var(--pine);
  }

  .home-hero-copy {
    min-height: 638px;
    align-content: end;
    padding: 20px 0 222px;
  }

  .home-hero-copy-inner {
    max-width: 100%;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: var(--button-radius);
    background: rgba(255, 253, 247, .74);
    box-shadow: 0 18px 50px rgba(20, 35, 24, .12);
    backdrop-filter: blur(14px);
  }

  .home-hero .lede {
    max-width: 100%;
    margin-top: 12px;
    color: #354239;
    font-size: 14.5px;
    line-height: 1.52;
  }

  .home-proofline {
    margin-top: 12px;
    font-size: 15.5px;
    line-height: 1.42;
  }

  .home-hero-image img {
    object-position: 58% center;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(248, 251, 244, .22) 0%, rgba(248, 251, 244, .08) 38%, rgba(248, 251, 244, .62) 72%, rgba(248, 251, 244, .96) 100%),
      linear-gradient(90deg, rgba(248, 251, 244, .18), rgba(248, 251, 244, .04));
  }

  .home-threshold {
    bottom: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .threshold-item {
    min-height: 74px;
    padding: 13px;
  }

  .threshold-item b {
    font-size: 28px;
  }

  .threshold-item span {
    font-size: 11.5px;
  }

  .home-bridge {
    padding: 36px 0 56px;
  }

  .bridge-copy {
    padding: 24px 20px;
  }

  .bridge-list {
    grid-template-columns: 1fr;
  }

  .bridge-list div {
    min-height: 96px;
    padding: 20px;
  }

  .brand-standard {
    padding: 24px 0 14px;
  }

  .brand-standard-copy {
    width: min(100% - 32px, 920px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }

  .brand-track {
    animation-duration: 64s;
  }

  .brand-logo {
    width: 136px;
    height: 60px;
    padding: 10px 13px;
  }

  .fine-print {
    width: min(100% - 32px, 920px);
  }

  .header-inner {
    min-height: 66px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand img {
    width: 138px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(251, 255, 251, .82) 0%, rgba(251, 255, 251, .5) 58%, rgba(251, 255, 251, .9) 100%);
  }

  .hero-copy {
    min-height: 500px;
    padding-bottom: 28px;
  }

  .title-xl,
  .hero-title {
    font-size: 42px;
    line-height: .98;
  }

  .section-title {
    font-size: 36px;
  }

  .section {
    padding: 48px 0;
  }

  .section.tight {
    padding-top: 34px;
  }

  .section-head,
  .page-intro-inner,
  .apartment-grid,
  .choice-grid,
  .card-grid,
  .plan-page-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 22px;
  }

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

  .stat {
    min-height: 96px;
    padding: 16px;
  }

  .chapter-copy h2,
  .chapter-copy h3,
  .panel h2,
  .contact-panel h2 {
    font-size: 32px;
  }

  .page-intro {
    padding: 38px 0 30px;
  }

  .page-intro-card {
    padding: 18px;
  }

  .chapter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: -4px 0 22px;
    padding-bottom: 4px;
    border: 0;
    background: transparent;
    box-shadow: none;
    scrollbar-width: none;
  }

  .chapter-tabs::-webkit-scrollbar {
    display: none;
  }

  .chapter-tabs a {
    flex: 0 0 auto;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    box-shadow: var(--small-shadow);
    white-space: nowrap;
  }

  .chapter-tabs span {
    font-size: 21px;
  }

  .chapter {
    gap: 12px;
    padding-bottom: 18px;
  }

  .chapter:nth-child(even) .chapter-copy,
  .chapter:nth-child(even) .image-tile {
    order: initial;
  }

  .chapter-copy {
    padding: 0;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-grid .image-tile:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 235px;
  }

  .masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .masonry .image-tile,
  .masonry .image-tile.tall,
  .masonry .image-tile.short {
    grid-column: auto;
    grid-row: auto;
    height: 245px;
  }

  .floor-scheme {
    min-height: 300px;
  }

  .developer-strip {
    padding: 22px 18px 22px 24px;
  }

  .developer-mark b {
    font-size: 32px;
  }

  .choice-card {
    min-height: auto;
    padding: 20px;
  }

  .choice-card h3 {
    font-size: 28px;
  }

  .standard-floor-plan {
    height: clamp(340px, 118vw, 560px);
  }

  .plan-hotspot-layer {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 253, 247, .9);
    border-top: 1px solid var(--line);
    pointer-events: auto;
  }

  .plan-hotspot {
    position: static;
    min-width: 0;
    padding: 10px;
    box-shadow: none;
    background: rgba(255, 255, 255, .78);
  }

  .unit {
    font-size: 10.5px;
    line-height: 1.14;
    padding: 4px;
  }

  .cta-band,
  .footer-bottom {
    display: grid;
  }

  .cta-band {
    padding: 22px 18px 22px 24px;
    gap: 16px;
  }

  .cta-band h2,
  .cta-band h3 {
    font-size: 30px;
  }

  .cta-band .action-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .cta-band .btn {
    width: 100%;
  }

  .contact-panel {
    padding: 24px 20px;
  }

  .contact-links a {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 4px;
  }

  .contact-links a span {
    text-align: left;
  }

  .site-footer {
    padding: 30px 0 26px;
    background: linear-gradient(180deg, rgba(255, 253, 247, .82), rgba(238, 247, 238, .72));
  }

  .footer-grid {
    gap: 10px;
  }

  .footer-brand,
  .footer-col {
    padding: 16px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--small-shadow);
  }

  .footer-brand {
    display: grid;
    justify-items: start;
    gap: 10px;
  }

  .footer-brand img {
    width: 166px;
    margin-bottom: 2px;
  }

  .footer-brand p,
  .footer-col a,
  .footer-col p {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-brand p {
    margin: 0;
  }

  .footer-brand .project-owner {
    width: 100%;
    margin-top: 2px;
    padding-top: 10px;
  }

  .footer-col h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footer-col a {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 7px 0;
    border-top: 1px solid var(--soft-line);
  }

  .footer-col a:first-of-type {
    border-top: 0;
  }

  .footer-col p {
    margin: 0;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .74);
    box-shadow: var(--small-shadow);
    font-size: 11px;
    line-height: 1.45;
  }

  .footer-bottom span:first-child {
    color: var(--pine);
    font-weight: 820;
  }

  .footer-bottom span:last-child {
    color: var(--muted);
  }

  .map,
  .map iframe {
    min-height: 360px;
  }

  table {
    min-width: 900px;
  }

  .table-wrap {
    display: none;
  }

  .comparison-cards {
    display: grid;
    gap: 12px;
  }

  th,
  td {
    padding: 13px;
  }

  .apartment-card {
    min-height: auto;
  }

  .apartment-plan {
    min-height: 150px;
  }

  .plan-image img {
    padding: 8px;
  }

  .quickbar {
    display: grid;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox img {
    max-width: 96vw;
    max-height: 78vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    width: 44px;
    height: 64px;
    font-size: 38px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter {
    bottom: 14px;
  }
}

@media (max-width: 420px) {
  .title-xl,
  .hero-title {
    font-size: 38px;
  }

  .home-hero {
    min-height: 780px;
  }

  .home-hero-copy {
    min-height: 640px;
    padding-bottom: 218px;
  }

  .home-topline {
    width: calc(100% - 20px);
    padding: 9px;
  }

  .home-brand img {
    width: 156px;
  }

  .home-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .home-hero-nav {
    gap: 5px;
    padding: 9px;
  }

  .home-hero-nav a {
    min-height: 36px;
    font-size: 10.2px;
  }

  .home-hero-copy-inner {
    padding: 16px 14px;
  }

  .threshold-item {
    min-height: 70px;
    padding: 11px;
  }

  .threshold-item b {
    font-size: 25px;
  }

  .threshold-item span {
    font-size: 11px;
  }

  .plan-hotspot-layer {
    grid-template-columns: 1fr;
  }

  .plan-hotspot {
    gap: 2px;
  }

  .stat b {
    font-size: 31px;
  }

  .footer-brand,
  .footer-col {
    padding: 14px 12px;
  }

  .footer-brand img {
    width: 152px;
  }

  .footer-bottom {
    padding: 11px 12px;
    font-size: 10.6px;
  }

  .quickbar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 6px;
  }

  .quickbar a {
    gap: 5px;
    font-size: 12px;
  }

  .quickbar a::before {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }
}

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