:root {
  --bg: #f7f6f4;
  --surface: #fcfbf9;
  --surface-alt: #f1eee7;
  --text: #1a1a1a;
  --muted: #555555;
  --primary: #2f5d50;
  --primary-dark: #23483e;
  --secondary: #c47a4a;
  --border: rgba(26, 26, 26, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-xl: 10px;
  --radius-lg: 10px;
  --radius-md: 10px;
  --container: min(1180px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
  color: #1a1a1a;
  background:
    radial-gradient(circle at top right, rgba(196, 122, 74, 0.08), transparent 26%),
    radial-gradient(circle at left 10%, rgba(47, 93, 80, 0.08), transparent 28%),
    var(--bg);
  line-height: 1.6;
  font-weight: 400;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(47, 93, 80, 0.28);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0;
  transform: translateY(-150%);
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

[class*="label"],
.section-label,
.eyebrow,
.label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 500;
  color: #5f7d73 !important;
}

[class*="label"] {
  color: #5f7d73 !important;
}

[class*="label"]::after,
.section-label::after,
.eyebrow::after,
.label::after {
  content: none !important;
  display: none !important;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

h1 {
  max-width: 12ch;
}

h2 {
  max-width: 12ch;
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.35rem, 3.3vw, 1.7rem);
}

p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(247, 246, 244, 0.88);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(20, 30, 27, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand img {
  width: 170px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
}

.lang-button {
  border: 0;
  padding: 0.2rem;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-cta,
.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 93, 80, 0.2);
}

.nav-cta:hover,
.button-primary:hover,
.nav-cta:focus-visible,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.button-secondary {
  border: 1px solid #ddd;
  background: transparent;
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #f2f2f2;
  border-color: #ddd;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.apartment-grid,
.location-grid {
  display: grid;
  gap: 2rem;
}

.hero {
  position: relative;
  min-height: 85vh;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 85vh;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(255, 255, 255, 0.4) 40%,
    rgba(255, 255, 255, 0) 70%
  );
  backdrop-filter: none;
}

.hero-content {
  max-width: 600px;
  margin-left: 8%;
  padding: 0;
  text-align: left;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
}

.hero-eyebrow {
  color: #2f5d50;
}

.hero-content h1 {
  font-size: 64px;
  margin-bottom: 1.75rem;
  max-width: 11ch;
  color: #1a1a1a;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hero-text {
  max-width: 58ch;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  margin-bottom: 0;
  color: #555;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.75rem;
}

.overview-feature__media img,
.gallery-stack img {
  width: 100%;
  object-fit: cover;
}

.section-head {
  margin-bottom: 1.8rem;
}

.section-intro {
  position: relative;
  margin-top: -80px;
  padding-top: calc(clamp(5rem, 7vw, 7.5rem) + 1.25rem);
  background: linear-gradient(to bottom, #ffffff 0%, #f7f9f8 100%);
}

.section-lead {
  max-width: 480px;
  margin: 1rem 0 0;
  font-size: 15px;
  color: #555;
}

.section h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.overview-intro {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.overview-intro__copy {
  max-width: 460px;
  margin-left: 40px;
}

.overview-intro__media {
  margin: 0;
}

.overview-intro__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(20px);
}

.apartment-section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(241, 238, 231, 0.8));
}

.apartment-story--city {
  background: #f4f6f5;
}

.apartment-story__wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.apartment-story__hero,
.apartment-story__row figure {
  margin: 0;
}

.apartment-story__hero {
  max-width: 900px;
  margin: 0 auto 80px;
}

.apartment-story__hero img,
.apartment-story__row img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.apartment-story__hero img {
  aspect-ratio: 16 / 10;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
}

.apartment-story__hero--city img {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.apartment-story__intro {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0.75rem;
}

.apartment-story__copy {
  max-width: 680px;
}

.apartment-story__copy h2 {
  margin-bottom: 16px;
  line-height: 1.2;
}

.apartment-story__copy p {
  max-width: 520px;
  margin-bottom: 0;
  line-height: 1.6;
}

.apartment-story__copy .eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6b7d75;
}

.apartment-story__cta {
  width: fit-content;
  padding: 12px 20px;
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.apartment-story__cta:hover,
.apartment-story__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.apartment-story__rows {
  display: grid;
  max-width: 1000px;
  gap: 24px;
  margin: 3.4rem auto 0;
}

.apartment-story__row {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.apartment-story__row img {
  aspect-ratio: 3 / 2;
  transform: scale(0.98);
  transition: transform 0.3s ease;
}

.apartment-story__row img:hover {
  transform: scale(1.02);
}

.apartment-story__offset img {
  transform: translateY(-12px) scale(0.98);
}

.apartment-story__offset img:hover {
  transform: translateY(-12px) scale(1.02);
}

.apartment-grid {
  align-items: start;
}

.gallery-stack {
  display: grid;
  gap: 1.1rem;
}

.gallery-feature img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.gallery-feature--accent {
  position: relative;
}

.gallery-feature--accent::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 122, 74, 0.32), rgba(196, 122, 74, 0));
  pointer-events: none;
}

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

.gallery-grid img,
.gallery-extra img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.gallery-cinema img {
  outline: 2px solid rgba(196, 122, 74, 0.28);
  outline-offset: -8px;
}

.gallery-extra img {
  aspect-ratio: 16 / 9;
}

.location-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.location-grid {
  align-items: start;
}

.location-text {
  max-width: 520px;
}

.address-list {
  margin-top: 1.7rem;
}

.location-item {
  display: block;
  margin-top: 24px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.location-item:hover,
.location-item:focus-visible {
  opacity: 0.75;
}

.location-item + .location-item {
  margin-top: 20px;
}

.location-name {
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 6px;
}

.location-address {
  opacity: 0.7;
  line-height: 1.5;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  border: 0;
  filter: grayscale(0.1);
  box-shadow: none;
}

.location-item:hover .location-name,
.location-item:focus-visible .location-name {
  text-decoration: underline;
}

.contact-section {
  position: relative;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #eef2f0 100%
  );
  border-radius: 24px;
  padding: 120px 0;
  margin-top: 120px;
}

.contact-section::before {
  display: none;
}

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

.contact-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 500;
}

.contact-text {
  margin-top: 16px;
  max-width: 420px;
  opacity: 0.8;
}

.contact-info {
  display: grid;
  gap: 0.2rem;
  font-size: 24px;
  line-height: 2;
  font-weight: 500;
}

.contact-info a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.contact-info a:hover,
.contact-info a:focus-visible {
  opacity: 0.6;
}

.site-footer {
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid var(--border);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.footer-wrap img {
  width: 170px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer-nav a {
  color: var(--text);
  font-weight: 500;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 1.25rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-image {
  opacity: 0;
  transform: scale(0.98) translateY(24px);
  transition: all 0.7s ease;
}

.reveal-image.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .overview-intro {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 2.2rem;
  }

  .apartment-grid {
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    gap: 2.8rem;
  }

  .apartment-story__intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1.5rem 2rem;
  }

  .apartment-story__cta {
    grid-column: 2 / 3;
    grid-row: 1;
    align-self: center;
  }

  .apartment-copy {
    position: sticky;
    top: 6rem;
  }

  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .apartment-grid,
  .location-grid {
    gap: 4rem;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 80vh;
    min-height: 520px;
  }

  .section {
    padding: 64px 0;
  }

  .contact-section {
    padding: 88px 24px;
  }

  .hero-overlay {
    justify-content: center;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.78) 8%,
      rgba(255, 255, 255, 0.58) 42%,
      rgba(255, 255, 255, 0.22) 100%
    );
  }

  .hero-content {
    margin-left: 0;
    padding: 24px;
    text-align: center;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 4rem);
    margin-bottom: 1.4rem;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    margin-top: 2.25rem;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-image {
    opacity: 1;
    transform: none;
  }
}
