:root {
  --bg: #f5efe5;
  --paper: rgba(255, 253, 249, 0.9);
  --ink: #132531;
  --muted: #60717b;
  --line: rgba(19, 37, 49, 0.12);
  --gold: #0a9b55;
  --shadow: 0 24px 60px rgba(18, 38, 50, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #fbf7f0 0%, #f5efe5 100%);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  background: #0a9b55;
  color: #fff;
}

.button.primary:hover {
  transform: translateY(-1px);
  background: #087e45;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

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

.brand img {
  display: block;
  height: 108px;
  width: auto;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.language-switcher a,
.language-switcher span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switcher a {
  color: var(--muted);
}

.language-switcher span {
  background: var(--ink);
  color: #fff;
}

.hero,
.section,
.project-card,
.overview-card,
.detail-card,
.service-card,
.gallery-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero,
.section {
  background: var(--paper);
}

.hero {
  padding: 48px;
}

.section {
  margin-top: 28px;
  padding: 38px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: "Newsreader", serif;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.1;
}

h4 {
  font-size: 1rem;
  line-height: 1.2;
}

p,
li {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.lede {
  margin-top: 18px;
  max-width: 58ch;
}

.overview-grid,
.detail-grid,
.service-grid,
.gallery-grid,
.villa-copy-grid,
.villa-gallery,
.apartment-copy-grid,
.apartment-gallery,
.property-sale-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

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

.project-overview-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.overview-card,
.detail-card,
.service-card,
.gallery-card,
.villa-copy-card,
.apartment-copy-card,
.property-sale-card,
.story-card,
.project-card {
  background: rgba(255, 255, 255, 0.74);
}

.overview-card,
.service-card,
.gallery-card,
.villa-copy-card,
.apartment-copy-card,
.property-sale-card,
.story-card,
.project-card {
  padding: 24px;
}

.project-card.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.project-card.featured.reverse {
  grid-template-columns: 1fr 1fr;
}

.project-visual {
  min-height: 280px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(11, 30, 40, 0.1), rgba(11, 30, 40, 0.4)),
    linear-gradient(140deg, #6f95a8 0%, #34596d 30%, #d4c2a5 30%, #d4c2a5 44%, #789777 44%, #334f42 100%);
}

.project-visual.tall {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(11, 30, 40, 0.1), rgba(11, 30, 40, 0.28)),
    url("./9.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.project-visual.soft {
  background:
    linear-gradient(180deg, rgba(11, 30, 40, 0.08), rgba(11, 30, 40, 0.28)),
    linear-gradient(140deg, #b6c9d3 0%, #7e9cab 30%, #ddd1bd 30%, #ddd1bd 44%, #97af93 44%, #617963 100%);
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.story-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.story-card.dark {
  background: linear-gradient(180deg, #102a36, #173a49);
  border-color: rgba(255, 255, 255, 0.08);
}

.story-card.dark h3,
.story-card.dark span,
.story-card.dark small {
  color: white;
}

.story-card.dark ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.stats li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stats span {
  font-family: "Newsreader", serif;
  font-size: 2rem;
  line-height: 1;
}

.stats small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.detail-card {
  padding: 18px;
}

.detail-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.detail-card strong {
  display: block;
  margin-top: 8px;
}

.project-copy-block,
.mini-section {
  margin-top: 18px;
}

.project-copy-block p,
.mini-section p {
  margin-top: 10px;
}

.mini-section ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card p {
  margin-top: 10px;
}

.villa-copy-grid {
  grid-template-columns: repeat(3, 1fr);
}

.villa-copy-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.villa-copy-card p {
  margin-top: 10px;
}

.villa-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.villa-gallery img {
  display: block;
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.74);
}

.apartment-copy-grid {
  grid-template-columns: repeat(3, 1fr);
}

.apartment-copy-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.apartment-copy-card p {
  margin-top: 10px;
}

.apartment-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.apartment-gallery img {
  display: block;
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.74);
}

.property-sale-grid {
  grid-template-columns: repeat(3, 1fr);
}

.property-sale-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.property-sale-card p {
  margin-top: 10px;
}

.property-sale-note {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fff6e8 0%, rgba(255, 255, 255, 0.82) 100%);
}

.property-sale-note p {
  margin-top: 10px;
}

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

.gallery-card {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(11, 30, 40, 0.1), rgba(11, 30, 40, 0.45)),
    linear-gradient(140deg, #6f95a8 0%, #34596d 30%, #d4c2a5 30%, #d4c2a5 44%, #789777 44%, #334f42 100%);
}

.gallery-card span {
  color: white;
  font-weight: 800;
}

.gallery-card.large {
  grid-column: span 2;
}

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

.cta-band p {
  max-width: 60ch;
  margin: 14px auto 0;
}

.cta-band .button {
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  min-height: 32px;
  padding: 0 12px;
  align-items: center;
  border-radius: 999px;
  background: rgba(19, 37, 49, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overview-card h3,
.overview-card p,
.project-card h3,
.project-card p {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .overview-grid,
  .project-overview-grid,
  .detail-grid,
  .service-grid,
  .gallery-grid,
  .villa-copy-grid,
  .villa-gallery,
  .apartment-copy-grid,
  .apartment-gallery,
  .property-sale-grid,
  .project-card.featured,
  .project-card.featured.reverse {
    grid-template-columns: 1fr;
  }

  .gallery-card.large {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero,
  .section {
    padding: 28px 22px;
  }
}
