
:root {
  --bg: #fbf8f3;
  --paper: #ffffff;
  --ink: #1e1b18;
  --muted: #6f675f;
  --line: #e8dfd4;
  --soft: #f3ece3;
  --accent: #9b7653;
  --accent-dark: #5f432e;
  --max: 1160px;
  --radius: 24px;
  --shadow: 0 22px 70px rgba(30, 27, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 223, 212, 0.8);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.lang {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  text-decoration: none;
  border: 1px solid var(--accent-dark);
  background: var(--accent-dark);
  color: #fff;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(95, 67, 46, 0.18);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}

.button.light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

main {
  overflow: hidden;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 22px;
}

.hero {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 36px;
  padding: 34px 22px 60px;
  align-items: stretch;
}

.hero-copy {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: clamp(32px, 5vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 800;
  margin: 0 0 16px;
}

h1, h2, h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 500;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  max-width: 680px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.trust-item {
  background: var(--soft);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  font-size: 20px;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.hero-image {
  min-height: 620px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(30,27,24,.08), rgba(30,27,24,.45)),
    url("../images/hero-penthouse-terrace.jpg") center/cover no-repeat;
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.75);
}

.hero-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow);
}

.card p:last-child {
  margin-bottom: 0;
}

.muted {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.feature p {
  color: var(--muted);
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  margin-top: 34px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--line);
}

.gallery-stack {
  display: grid;
  gap: 16px;
}

.callout {
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  padding: clamp(30px, 5vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.callout p {
  color: rgba(255,255,255,.72);
  margin: 16px 0 0;
  max-width: 700px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.info-list div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.info-list strong {
  color: var(--ink);
}

.info-list span {
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.article-card {
  text-decoration: none;
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.article-card small {
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.article-card h3 {
  margin-top: 12px;
}

.article-card p {
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-weight: 750;
}

details p {
  color: var(--muted);
}

.form-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 750;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 14px 14px;
  color: var(--ink);
  font: inherit;
}

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

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 500;
}

.checkbox input {
  width: auto;
  margin-top: 5px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 22px;
  color: var(--muted);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.article-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 22px;
}

.article-page h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.article-page .lead {
  max-width: none;
}

.article-content {
  margin-top: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 54px);
}

.article-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 40px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p, .article-content li {
  color: var(--muted);
  font-size: 18px;
}

.article-content a {
  color: var(--accent-dark);
  font-weight: 700;
}

.notice {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  margin-top: 24px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero,
  .grid-2,
  .gallery,
  .callout {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 460px;
  }

  .trust-row,
  .feature-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: flex;
    gap: 8px;
    font-size: 13px;
  }

  .nav-links a:not(.lang):not(.mobile-keep) {
    display: none;
  }
}

@media (max-width: 620px) {
  .trust-row,
  .feature-grid,
  .article-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section {
    padding: 62px 16px;
  }

  .hero-copy {
    border-radius: 26px;
  }
}


.location-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--accent-dark);
  font-weight: 750;
  font-size: 14px;
}

.story-card {
  background: linear-gradient(135deg, #fff, #f7efe6);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(26px, 4vw, 46px);
  box-shadow: var(--shadow);
}

@media (max-width: 620px) {
  .nav {
    padding: 12px 14px;
  }

  .brand {
    font-size: 21px;
  }

  .nav-links {
    gap: 6px;
  }

  .lang {
    padding: 7px 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
