:root {
      --primary: #0b3d42;
      --primary-light: #0f6f73;
      --accent: #c8a96a;
      --sand: #f7f1e8;
      --cream: #fffaf2;
      --dark: #071f24;
      --text: #243336;
      --muted: #6d7a7c;
      --white: #ffffff;
      --shadow: 0 20px 50px rgba(7, 31, 36, 0.12);
      --radius: 26px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--cream);
      line-height: 1.6;
    }

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

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

    button,
    input,
    textarea {
      font-family: inherit;
    }

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

    .section {
      padding: 90px 0;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--primary-light);
      font-size: 0.75rem;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: Georgia, "Times New Roman", serif;
      color: var(--primary);
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.08;
      font-weight: 500;
    }

    .section-subtitle {
      color: var(--muted);
      max-width: 720px;
      margin: 16px auto 0;
      font-size: 1.05rem;
    }

    .center {
      text-align: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 14px 24px;
      font-weight: 800;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      cursor: pointer;
      border: 0;
      font-size: 0.95rem;
    }

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

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      color: white;
      box-shadow: 0 14px 28px rgba(15, 111, 115, 0.28);
    }

    .btn-primary:hover {
      box-shadow: 0 20px 38px rgba(15, 111, 115, 0.35);
    }

    .btn-outline {
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.6);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
    }

    .btn-light {
      background: white;
      color: var(--primary);
      box-shadow: 0 10px 24px rgba(7, 31, 36, 0.12);
    }

    .icon {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    /* Header */
    .site-header {
      position: fixed;
      top: 18px;
      left: 0;
      width: 100%;
      z-index: 50;
      transition: all 0.25s ease;
    }

    .site-header.scrolled {
      top: 8px;
    }

    .nav-shell {
      width: min(1180px, calc(100% - 28px));
      margin: 0 auto;
      background: rgba(255, 250, 242, 0.88);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.75);
      border-radius: 24px;
      box-shadow: 0 12px 40px rgba(7, 31, 36, 0.12);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }

    .logo-img {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      object-fit: cover;
    }

    .logo-text strong {
      display: block;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.35rem;
      letter-spacing: 0.08em;
      color: var(--primary);
      line-height: 1;
    }

    .logo-text span {
      display: block;
      color: var(--primary-light);
      font-size: 0.72rem;
      letter-spacing: 0.36em;
      margin-top: 6px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark);
    }

    .desktop-nav a {
      position: relative;
      opacity: 0.9;
    }

    .desktop-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.25s ease;
    }

    .desktop-nav a:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .menu-button {
      display: none;
      background: transparent;
      border: 0;
      color: var(--primary);
      font-size: 2rem;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(7, 31, 36, 0.45);
      z-index: 70;
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-menu-panel {
      position: absolute;
      right: 16px;
      top: 16px;
      width: min(340px, calc(100% - 32px));
      background: var(--cream);
      border-radius: 28px;
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .mobile-menu-panel nav {
      display: grid;
      gap: 18px;
      margin-top: 22px;
      font-weight: 800;
      color: var(--primary);
    }

    .mobile-close {
      float: right;
      background: var(--primary);
      color: white;
      border: 0;
      border-radius: 999px;
      width: 42px;
      height: 42px;
      cursor: pointer;
      font-size: 1.4rem;
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
      color: white;
      background: var(--dark);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(7,31,36,0.35), rgba(7,31,36,0.58)),
        radial-gradient(circle at center, rgba(7,31,36,0.18), rgba(7,31,36,0.62));
      z-index: 1;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: min(1180px, calc(100% - 32px));
      padding-top: 110px;
      display: flex;
      justify-content: center;
      text-align: center;
    }

    .hero-card {
      max-width: 820px;
      margin: 0 auto;
    }

    .hero-kicker {
      font-family: Georgia, "Times New Roman", serif;
      font-style: italic;
      font-size: clamp(1.4rem, 3vw, 2.5rem);
      color: #f4e0b0;
      margin-bottom: 10px;
    }

    .hero h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(3.4rem, 9vw, 7.8rem);
      line-height: 0.95;
      font-weight: 500;
      letter-spacing: 0.02em;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .hero h1 span {
      display: block;
      font-family: Inter, system-ui, sans-serif;
      font-size: clamp(1.2rem, 3vw, 2rem);
      letter-spacing: 0.38em;
      margin-top: 18px;
      font-weight: 700;
    }

    .hero p {
      max-width: 680px;
      font-size: clamp(1.05rem, 2vw, 1.35rem);
      margin: 0 auto 30px;
      color: rgba(255,255,255,0.88);
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-badges {
      margin-top: 34px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-badge {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.22);
      color: white;
      padding: 10px 14px;
      border-radius: 999px;
      backdrop-filter: blur(12px);
      font-weight: 700;
      font-size: 0.9rem;
    }

    /* Apartments */
    .apartments {
      background:
        radial-gradient(circle at top right, rgba(15,111,115,0.12), transparent 34%),
        var(--cream);
    }

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

    .apartment-card {
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(11, 61, 66, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .apartment-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 60px rgba(7, 31, 36, 0.18);
    }

    .apartment-image-wrap {
      position: relative;
      height: 310px;
      overflow: hidden;
    }

    .apartment-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .apartment-card:hover .apartment-image-wrap img {
      transform: scale(1.05);
    }

    .apartment-label {
      position: absolute;
      left: 18px;
      top: 18px;
      background: var(--primary);
      color: white;
      padding: 9px 15px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .apartment-body {
      padding: 28px;
    }

    .apartment-body h3 {
      font-family: Georgia, "Times New Roman", serif;
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .apartment-body p {
      color: var(--muted);
      margin-bottom: 22px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 24px;
    }

    .feature {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--sand);
      border-radius: 16px;
      padding: 12px 14px;
      color: var(--primary);
      font-weight: 800;
      font-size: 0.9rem;
      text-align: left;
    }

    /* Why */
    .why {
      background:
        linear-gradient(180deg, rgba(15,111,115,0.07), rgba(15,111,115,0.02)),
        var(--sand);
      position: relative;
      overflow: hidden;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 46px;
    }

    .why-card {
      background: rgba(255,255,255,0.76);
      border: 1px solid rgba(255,255,255,0.9);
      border-radius: 24px;
      padding: 26px;
      text-align: center;
      box-shadow: 0 14px 34px rgba(7,31,36,0.08);
    }

    .why-icon {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 16px;
      background: white;
      color: var(--primary-light);
      box-shadow: 0 10px 24px rgba(7,31,36,0.08);
    }

    .why-icon svg {
      width: 34px;
      height: 34px;
      stroke: currentColor;
      stroke-width: 1.7;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .why-card h3 {
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .why-card p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    /* Reviews */
    .reviews {
      background: var(--cream);
    }

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

    .review-card {
      background: white;
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 16px 34px rgba(7,31,36,0.08);
      border: 1px solid rgba(11,61,66,0.08);
      text-align: left;
    }

    .stars {
      color: #dca929;
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .review-card blockquote {
      color: var(--text);
      font-size: 0.98rem;
      margin-bottom: 18px;
    }

    .review-author {
      color: var(--primary);
      font-weight: 900;
    }

    /* Contact / Map */
    .contact-map {
      background: linear-gradient(135deg, var(--primary), var(--dark));
      color: white;
      padding: 0;
    }

    .contact-map-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      min-height: 520px;
    }

    .contact-panel {
      padding: 70px max(32px, calc((100vw - 1180px) / 2));
      padding-right: 56px;
    }

    .contact-panel .eyebrow {
      color: #d9c38d;
    }

    .contact-panel .section-title {
      color: white;
    }

    .contact-list {
      display: grid;
      gap: 16px;
      margin: 30px 0;
    }

    .contact-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: rgba(255,255,255,0.9);
    }

    .contact-item strong {
      display: block;
      color: white;
    }

    .contact-icon {
      width: 24px;
      height: 24px;
      color: #d9c38d;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .map-panel {
      background: #d7e4e1;
      min-height: 520px;
      display: grid;
      place-items: center;
      padding: 28px;
    }

    .map-placeholder {
      width: min(560px, 100%);
      background: white;
      color: var(--text);
      border-radius: 28px;
      padding: 34px;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .map-placeholder h3 {
      font-family: Georgia, "Times New Roman", serif;
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .map-placeholder p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .map-frame {
      width: 100%;
      height: 100%;
      min-height: 520px;
      border: 0;
    }

    /* Footer */
    .footer {
      background: #041417;
      color: white;
      padding: 46px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .footer h3,
    .footer h4 {
      color: white;
      margin-bottom: 12px;
    }

    .footer p,
    .footer a {
      color: rgba(255,255,255,0.72);
      font-size: 0.95rem;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-bottom {
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
    }

    /* Modal gallery */
    .modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(4, 20, 23, 0.94);
      z-index: 100;
      padding: 24px;
    }

    .modal.open {
      display: grid;
      place-items: center;
    }

    .modal-inner {
      width: min(1100px, 100%);
      position: relative;
    }

    .modal-image {
      width: 100%;
      max-height: 82vh;
      object-fit: contain;
      border-radius: 22px;
      background: rgba(255,255,255,0.04);
    }

    .modal-close,
    .modal-prev,
    .modal-next {
      position: absolute;
      border: 0;
      cursor: pointer;
      display: grid;
      place-items: center;
      color: white;
      background: rgba(255,255,255,0.16);
      backdrop-filter: blur(8px);
      transition: background 0.25s ease;
    }

    .modal-close:hover,
    .modal-prev:hover,
    .modal-next:hover {
      background: rgba(255,255,255,0.28);
    }

    .modal-close {
      top: -58px;
      right: 0;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      font-size: 1.6rem;
    }

    .modal-prev,
    .modal-next {
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      font-size: 2rem;
    }

    .modal-prev {
      left: -66px;
    }

    .modal-next {
      right: -66px;
    }

    .modal-caption {
      color: white;
      text-align: center;
      margin-top: 14px;
      font-weight: 700;
    }

    /* Cookie */
    .cookie-banner {
      position: fixed;
      left: 20px;
      bottom: 20px;
      width: min(460px, calc(100% - 40px));
      background: white;
      color: var(--text);
      z-index: 90;
      border-radius: 24px;
      padding: 22px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(11,61,66,0.08);
      display: none;
    }

    .cookie-banner.show {
      display: block;
    }

    .cookie-banner h3 {
      color: var(--primary);
      margin-bottom: 8px;
    }

    .cookie-banner p {
      color: var(--muted);
      font-size: 0.92rem;
      margin-bottom: 16px;
    }

    .cookie-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    /* Animations */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    /* Responsive */
    @media (max-width: 980px) {
      .desktop-nav,
      .nav-actions .btn-primary {
        display: none;
      }

      .menu-button {
        display: block;
      }

      .apartments-grid,
      .contact-map-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

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

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

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

      .modal-prev {
        left: 12px;
      }

      .modal-next {
        right: 12px;
      }
    }

    @media (max-width: 620px) {
      .section {
        padding: 70px 0;
      }

      .nav-shell {
        border-radius: 20px;
      }

      .logo-img {
        width: 48px;
        height: 48px;
      }

      .logo-text strong {
        font-size: 1.05rem;
      }

      .logo-text span {
        font-size: 0.6rem;
      }

      .hero {
        min-height: 92vh;
      }

      .hero h1 {
        font-size: 3.2rem;
      }

      .hero h1 span {
        letter-spacing: 0.22em;
      }

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

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

      .apartment-image-wrap {
        height: 240px;
      }

      .footer-bottom {
        display: grid;
      }

      .hero-buttons .btn {
        width: 100%;
      }
    }

.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-mail {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-mail:hover {
  background: rgba(255,255,255,0.12);
}

@media (max-width: 620px) {
  .contact-buttons .btn {
    width: 100%;
  }
}


/* SEO local section */
.seo-local {
  background:
    radial-gradient(circle at left top, rgba(200,169,106,0.16), transparent 30%),
    linear-gradient(180deg, var(--cream), var(--sand));
}

.seo-local-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: stretch;
}

.seo-local-main,
.seo-local-card,
.seo-info-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(11,61,66,0.08);
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(7,31,36,0.08);
}

.seo-local-main {
  padding: clamp(28px, 5vw, 54px);
}

.seo-local-main p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.03rem;
}

.seo-local-card {
  padding: 34px;
}

.seo-local-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.seo-local-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.seo-local-card li {
  color: var(--text);
  font-weight: 700;
  padding-left: 26px;
  position: relative;
}

.seo-local-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 9px;
}

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

.seo-keywords span {
  background: var(--primary);
  color: white;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.84rem;
  font-weight: 800;
}

.seo-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.seo-info-card {
  padding: 28px;
}

.seo-info-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

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

@media (max-width: 980px) {
  .seo-local-grid,
  .seo-info-grid {
    grid-template-columns: 1fr;
  }
}


/* Language switcher */
.language-switcher{display:flex;align-items:center;gap:6px;padding:5px;border-radius:999px;background:rgba(11,61,66,.08)}
.language-switcher a{color:var(--primary);font-size:.78rem;font-weight:900;padding:7px 10px;border-radius:999px;transition:background .2s ease,color .2s ease}
.language-switcher a:hover,.language-switcher a.active{background:var(--primary);color:#fff}
.mobile-languages{display:grid;gap:10px;padding:14px;border-radius:18px;background:rgba(11,61,66,.08)}
.mobile-languages a{color:var(--primary);font-weight:900}.mobile-languages a.active{color:var(--primary-light);text-decoration:underline}
@media(max-width:980px){.nav-actions .language-switcher{display:none}}


/* Compact language dropdown */
.language-dropdown {
  position: relative;
  flex-shrink: 0;
}

.language-dropdown summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 66px;
  height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(11, 61, 66, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  user-select: none;
  border: 1px solid rgba(11, 61, 66, 0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-dropdown summary::-webkit-details-marker {
  display: none;
}

.language-dropdown summary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.language-icon {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 130px;
  padding: 8px;
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 18px 40px rgba(7, 31, 36, 0.16);
  border: 1px solid rgba(11, 61, 66, 0.08);
  display: grid;
  gap: 4px;
  z-index: 90;
}

.language-dropdown-menu a {
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 900;
  padding: 9px 10px;
  border-radius: 12px;
}

.language-dropdown-menu a:hover {
  background: var(--sand);
}

@media (max-width: 980px) {
  .nav-actions .language-dropdown {
    display: none;
  }
}
