:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --ink: #1a1a1a;
  --muted: #666;
  --line: #e7e7e7;
  --brand: #111111;
  --accent: #f3f3f3;
  --shadow: 0 10px 28px rgba(20, 20, 20, 0.06);
  --radius: 14px;
  --nav-h: 74px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-h);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}
.logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.logo strong {
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
}
nav a:hover,
nav a.active { background: var(--accent); }
.menu-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--line);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
  color: #222;
  border-radius: 10px;
  padding: 8px 32px 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  min-width: 7.5rem;
  line-height: 1.2;
}
.lang-select:hover {
  border-color: #ccc;
}
.lang-select:focus {
  outline: 2px solid #111;
  outline-offset: 2px;
}
.menu-backdrop {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}
.btn.primary {
  background: #111;
  color: #fff;
  border-color: #111;
}
.btn.primary:hover { background: #000; }

main { min-height: calc(100vh - var(--nav-h)); }
section { padding: 60px 0; }
.hero { padding: 70px 0 52px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 700;
  background: #f5f5f5;
  border: 1px solid #e9e9e9;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}


.eyebrow2 {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 700;
  background: #000000;
  border: 1px solid #070606;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
h1,
h1, h2, h3, h4 { font-family: "Playfair Display", serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 14px; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); margin-bottom: 10px; }
p.lead { color: var(--muted); max-width: 700px; }

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

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

.service-card, .info-card, .blog-card, .listing-card {
  padding: 18px;
}
.service-card p, .info-card p, .blog-card p { color: var(--muted); font-size: 0.94rem; }

.listing-card { padding: 0; overflow: hidden; }
.listing-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.listing-body { padding: 14px; }
.badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f4f4f4;
  border: 1px solid #e8e8e8;
}
.meta { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

.cta {
  margin-top: 20px;
  background: #121212;
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  border-top: 1px solid var(--line);
  background: #fafafa;
  padding: 24px 0;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --nav-h: auto; }
  body { overflow-x: hidden; }

  header {
    height: auto;
    position: sticky;
  }

  .nav-wrap {
    position: relative;
    height: auto;
    padding: 10px 0;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }
  .logo strong { display: none; }
  .logo img {
    width: 36px;
    height: 36px;
  }

  .nav-wrap > .btn.primary { display: none; }
  .menu-toggle { display: inline-flex; }
  .lang-switch { margin-left: auto; }

  nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(280px, calc(100vw - 28px));
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 6px;
    transition: max-height 0.24s ease, opacity 0.18s ease, transform 0.18s ease;
    z-index: 35;
  }
  nav.open {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    overflow: visible;
    gap: 2px;
    padding-bottom: 0;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 12px 10px;
    font-size: 0.9rem;
    white-space: normal;
    border-radius: 8px;
    line-height: 1.25;
  }
  .menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
  }
  .menu-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }
  header { z-index: 30; }

  main { min-height: auto; }
  section { padding: 42px 0; }
  .hero { padding: 42px 0 34px; }
  h1 { font-size: clamp(1.55rem, 8vw, 2.2rem); }
  p.lead { font-size: 0.95rem; }

  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .card { border-radius: 12px; }
  .foot { gap: 6px; }
}
