@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --stone: #e8e0d3;
  --sage: #7f9278;
  --sage-soft: #dfe7dc;
  --olive: #35442f;
  --olive-2: #52624b;
  --copper: #ad6037;
  --copper-dark: #8d4729;
  --ink: #252520;
  --muted: #6d6b61;
  --line: rgba(53, 68, 47, 0.16);
  --shadow: 0 24px 70px rgba(45, 41, 34, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.site-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 14%, rgba(127, 146, 120, 0.08), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--ivory) 56%, #f3eee3);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(53, 68, 47, 0.1);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  color: #313329;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--copper);
  color: #fffdf8;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: 180ms ease;
  box-shadow: 0 10px 24px rgba(173, 96, 55, 0.12);
}

.button:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgba(173, 96, 55, 0.34);
  background: transparent;
  color: var(--copper-dark);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(173, 96, 55, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--olive);
  font: 700 20px/1 var(--sans);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(540px, 1.22fr);
  align-items: stretch;
  min-height: 720px;
  padding: 34px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fbf8f0, #f1eadf);
}

.hero-copy {
  position: relative;
  display: grid;
  align-content: center;
  z-index: 2;
  padding: clamp(52px, 7vw, 104px);
  border: 1px solid rgba(53, 68, 47, 0.1);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.92)),
    url("../images/hero-editorial.jpg") center/cover;
}

.hero-copy::before {
  position: absolute;
  bottom: 28px;
  left: 32px;
  color: rgba(53, 68, 47, 0.08);
  content: "LANDLEBEN";
  font-family: var(--serif);
  font-size: 92px;
  letter-spacing: 0.12em;
  line-height: 1;
  writing-mode: vertical-rl;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 550px;
  font-size: clamp(54px, 7vw, 88px);
}

h2 {
  font-size: clamp(40px, 5vw, 64px);
}

h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.lead {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
  background: var(--olive);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  display: none;
}

.fact-bar {
  width: min(1180px, calc(100% - 48px));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--olive);
  color: #f8f1e7;
  box-shadow: 0 18px 44px rgba(53, 68, 47, 0.18);
}

.fact {
  min-height: 106px;
  padding: 26px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 13px;
}

.section {
  padding: clamp(58px, 6.4vw, 96px) 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(36px, 5.2vw, 72px);
}

.stagger {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 28px;
}

.stagger .photo-card:first-child {
  height: 430px;
}

.stagger .photo-card:last-child {
  height: 320px;
}

.photo-card {
  overflow: hidden;
  border: 1px solid rgba(53, 68, 47, 0.12);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.photo-card:hover,
.gallery-card:hover,
.apartment-card:hover,
.info-card:hover,
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(45, 41, 34, 0.12);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story {
  position: relative;
}

.story-section {
  padding-top: clamp(70px, 7.2vw, 108px);
  padding-bottom: clamp(48px, 5.6vw, 78px);
}

.story-section .split {
  grid-template-columns: 0.82fr 1.18fr;
}

.story::before {
  position: absolute;
  top: 80px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(127, 146, 120, 0.08);
  content: "";
  pointer-events: none;
}

.map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.map-panel img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  background: #f4f0e7;
}

.location-section {
  padding-top: clamp(46px, 5.2vw, 78px);
  padding-bottom: clamp(64px, 6.8vw, 100px);
}

.location-section .split {
  grid-template-columns: minmax(440px, 0.98fr) minmax(440px, 1.02fr);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.chip {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
}

.floor-section {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(247, 243, 234, 0.98));
}

.apartment-grid {
  display: grid;
  grid-template-columns: 230px minmax(300px, 1fr) 0.8fr;
  gap: 34px;
  align-items: center;
}

.apartment-tabs {
  display: grid;
  gap: 12px;
}

.apartment-tabs.long {
  max-height: 620px;
  overflow: auto;
  padding-right: 6px;
}

.apartment-tab {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: 180ms ease;
}

.apartment-tab:hover {
  border-color: rgba(173, 96, 55, 0.45);
  transform: translateX(3px);
}

.apartment-tab.active {
  border-color: rgba(173, 96, 55, 0.7);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(173, 96, 55, 0.09);
}

.apartment-tab strong {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.plan-frame {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.plan-frame img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.details-card {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 38px rgba(45, 41, 34, 0.07);
}

.details-card .size {
  margin: 8px 0 4px;
  font-family: var(--serif);
  font-size: 70px;
  line-height: 0.9;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li::before {
  margin-right: 10px;
  color: var(--copper);
  content: "+";
  font-weight: 700;
}

.materials {
  background: var(--olive);
  color: #f8f1e7;
  padding-top: clamp(66px, 7vw, 104px);
  padding-bottom: clamp(66px, 7vw, 104px);
}

.materials-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.08fr) minmax(260px, 0.82fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.materials p {
  max-width: 430px;
  color: rgba(255, 253, 248, 0.82);
}

.materials h2 {
  max-width: 420px;
  font-size: clamp(38px, 4.2vw, 58px);
}

.materials-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
}

.materials-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.amenity-list {
  display: grid;
  gap: 12px;
  padding: 0;
  color: rgba(255, 253, 248, 0.86);
}

.amenity-list article {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.055);
}

.amenity-list strong,
.amenity-list span {
  display: block;
}

.amenity-list strong {
  color: #fffdf8;
  font-size: 16px;
}

.amenity-list span {
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

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

.gallery-section {
  padding-top: clamp(66px, 6.8vw, 102px);
}

.section-heading {
  margin-bottom: 34px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(45, 41, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.gallery-card div {
  padding: 20px;
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(49, 65, 46, 0.98), rgba(75, 91, 68, 0.96));
  color: #fffdf8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-grid form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
}

.form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(53, 68, 47, 0.18);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  font: 500 14px/1.4 var(--sans);
  padding: 13px 14px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.footer {
  padding: 64px 0 28px;
  background: #31412e;
  color: rgba(255, 253, 248, 0.78);
}

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

.footer .brand {
  color: #fffdf8;
  font-size: 42px;
}

.footer h4 {
  margin: 0 0 16px;
  color: #f8f1e7;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 253, 248, 0.56);
  font-size: 13px;
  text-align: center;
}

.page-hero {
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: clamp(78px, 9vw, 122px) 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.92) 42%, rgba(255, 253, 248, 0.48) 100%),
    url("../images/premium-hero-building.png") right center/58% auto no-repeat;
}

.page-hero p {
  max-width: 560px;
}

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

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 12px 34px rgba(45, 41, 34, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.table th,
.table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

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

.notice {
  padding: 22px;
  border-left: 4px solid var(--copper);
  background: rgba(173, 96, 55, 0.08);
  color: var(--olive);
}

.page-kicker {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-kicker span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
}

.feature-band {
  padding: clamp(54px, 6vw, 86px) 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(247, 243, 234, 0.92));
  border-block: 1px solid rgba(53, 68, 47, 0.08);
}

.media-split {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.media-split.reverse {
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
}

.media-split figure {
  margin: 0;
}

.large-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.large-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.stack-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.stack-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
}

.stack-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
}

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

.stat-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(45, 41, 34, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stat-card strong {
  display: block;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

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

.apartment-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(45, 41, 34, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.apartment-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.apartment-card div {
  padding: 20px;
}

.apartment-card h3 {
  font-size: 30px;
}

.cta-panel {
  padding: clamp(42px, 5vw, 72px);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(53, 68, 47, 0.94), rgba(82, 98, 75, 0.92)),
    url("../images/premium-garden.png") center/cover;
  color: #fffdf8;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-panel::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 25%, rgba(255, 253, 248, 0.12), transparent 34%);
  content: "";
  pointer-events: none;
}

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

.cta-panel .lead {
  color: rgba(255, 253, 248, 0.78);
}

.cta-panel .button.secondary {
  border-color: rgba(255, 253, 248, 0.42);
  color: #fffdf8;
}

.clean-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(45, 41, 34, 0.06);
}

.clean-table-wrap .table {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.data-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.data-strip article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.data-strip strong {
  display: block;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.data-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

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

.spec-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(45, 41, 34, 0.06);
}

.spec-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.route-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--olive);
  font-weight: 700;
}

.route-item span {
  color: var(--copper-dark);
}

.unit-summary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.unit-summary article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--muted);
}

.unit-summary strong {
  display: block;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.compact-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.project-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.legal-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    right: 24px;
    left: 24px;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav.open .nav-links {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split,
  .story-section .split,
  .location-section .split,
  .media-split,
  .media-split.reverse,
  .apartment-grid,
  .materials-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 18px;
  }

  .hero-copy,
  .hero-media {
    border-radius: 10px;
  }

  .hero-copy {
    border-right: 1px solid rgba(53, 68, 47, 0.1);
  }

  .hero-badge {
    display: none;
  }

  .fact-bar,
  .content-grid,
  .gallery-grid,
  .stats-grid,
  .apartment-card-grid,
  .data-strip,
  .spec-grid,
  .unit-summary,
  .project-partners,
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.8)),
      url("../images/premium-hero-building.png") center/cover no-repeat;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-inner {
    position: relative;
    min-height: 74px;
    gap: 12px;
  }

  .brand {
    font-size: 30px;
  }

  .menu-toggle {
    position: fixed;
    display: inline-grid !important;
    top: 15px;
    right: auto;
    left: min(330px, calc(100vw - 58px));
    z-index: 60;
    flex: 0 0 44px;
    border-color: var(--copper);
    background: var(--copper);
    color: #fffdf8;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-copy {
    min-width: 0;
    padding: 42px 16px;
    overflow: hidden;
  }

  .hero-copy > * {
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.03;
  }

  h2 {
    font-size: 38px;
  }

  .lead {
    max-width: 330px;
    font-size: 15px;
    overflow-wrap: normal;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 380px;
  }

  .fact-bar,
  .content-grid,
  .gallery-grid,
  .stats-grid,
  .apartment-card-grid,
  .data-strip,
  .spec-grid,
  .route-grid,
  .unit-summary,
  .project-partners,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .stagger .photo-card:first-child,
  .stagger .photo-card:last-child {
    height: 280px;
  }

  .map-panel img {
    height: 280px;
  }

  .materials-photo img {
    height: 240px;
  }

  .large-photo img {
    height: 280px;
  }

  .page-hero {
    padding: 54px 0;
  }

  .page-hero h1 {
    max-width: 320px;
    font-size: 31px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .page-hero .lead {
    max-width: 320px;
  }

  .page-kicker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-kicker span {
    width: 100%;
    text-align: center;
  }

  .stat-card,
  .stack-item,
  .info-card {
    padding: 20px;
  }
}
