:root {
  --bg: #f4f1ea;
  --bg-2: #fffaf2;
  --ink: #101828;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.12);
  --blue: #2563eb;
  --blue-dark: #173f9c;
  --teal: #0f766e;
  --amber: #c97a22;
  --coral: #d75947;
  --card: #ffffff;
  --dark-card: #111827;
  --shadow: 0 20px 50px rgba(16, 24, 40, 0.12);
  --soft-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
}

.page-view {
  animation: pageGlide 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pageGlide {
  from {
    opacity: 0.45;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  background: rgba(255, 250, 242, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 1.02rem;
}

.brand-area {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(16, 24, 40, 0.76);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(37, 99, 235, 0.11);
  color: var(--blue-dark);
}

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

.lang-select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-weight: 800;
  padding: 0 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.button.primary {
  background: var(--blue);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

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

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button.small {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.86rem;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 820px);
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 13, 28, 0.84), rgba(8, 13, 28, 0.4) 46%, rgba(8, 13, 28, 0.18)),
    linear-gradient(180deg, transparent 45%, rgba(244, 241, 234, 0.92) 100%);
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 88px 0 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue-dark);
}

.hero h1 {
  max-width: 780px;
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(2.5rem, 8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2.2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 10px;
  width: min(1040px, 100%);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(37, 99, 235, 0.72);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.section {
  padding: 82px 0;
}

.section.tight {
  padding: 46px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title {
  max-width: 760px;
}

.section-title h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-title p {
  max-width: 690px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.property-card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.property-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--soft-shadow);
}

.property-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #d9e2ec;
}

.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.property-card:hover .property-media img {
  transform: scale(1.04);
}

.property-badges,
.gallery-badges {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
  padding: 0 9px;
  backdrop-filter: blur(12px);
}

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

.badge.blue {
  border-color: transparent;
  background: var(--blue);
}

.property-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.property-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.property-title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.property-place {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.price {
  color: var(--blue-dark);
  font-size: 1.08rem;
  font-weight: 900;
  white-space: nowrap;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fact {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 241, 234, 0.64);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
  padding: 6px 10px;
}

.construction-chip {
  border-color: rgba(201, 122, 34, 0.28);
  background: rgba(201, 122, 34, 0.12);
  color: #7a4512;
}

.service-card {
  display: grid;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
}

.service-card.dark {
  background: var(--dark-card);
  color: #fff;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue);
  font-weight: 900;
}

.service-card.dark .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.service-card h3 {
  margin: auto 0 8px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.trust-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.google-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: var(--radius-lg);
  background: #dfe7ef;
}

.google-map .gm-style {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.map-overlay-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  max-width: 520px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 14px 16px;
  box-shadow: var(--soft-shadow);
}

.map-overlay-note span {
  color: var(--muted);
  font-size: 0.9rem;
}

.albania-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), transparent 45%),
    #dfeaf2;
}

.property-map {
  min-height: 360px;
  margin: 18px 0;
}

.map-sea {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: start;
  color: rgba(37, 99, 235, 0.28);
  font-size: clamp(2.4rem, 8vw, 6rem);
  font-weight: 950;
  padding: 26px;
}

.map-land {
  position: absolute;
  inset: 7% 12% 7% 36%;
  border-radius: 48% 42% 46% 44%;
  background:
    radial-gradient(circle at 42% 18%, rgba(255, 255, 255, 0.68), transparent 18%),
    linear-gradient(160deg, #f8f1de, #d6e7cd 58%, #b9d8c5);
  box-shadow:
    inset 0 0 0 1px rgba(16, 24, 40, 0.08),
    0 24px 70px rgba(16, 24, 40, 0.18);
  transform: rotate(-7deg);
}

.map-land::before {
  position: absolute;
  inset: 8% 18% 10% 12%;
  content: "";
  border-left: 2px dashed rgba(16, 24, 40, 0.16);
  border-bottom: 2px dashed rgba(16, 24, 40, 0.1);
  border-radius: 50%;
}

.map-label {
  position: absolute;
  z-index: 2;
  color: rgba(16, 24, 40, 0.58);
  font-size: 0.78rem;
  font-weight: 850;
  transform: rotate(7deg);
}

.map-label.north {
  top: 13%;
  right: 8%;
}

.map-label.center {
  top: 47%;
  left: 16%;
}

.map-label.south {
  bottom: 14%;
  left: 28%;
}

.map-pin {
  position: absolute;
  z-index: 5;
  width: 28px;
  height: 28px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.25);
  transform: translate(-50%, -100%) rotate(-45deg);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.map-pin span {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #fff;
}

.map-pin:hover {
  background: var(--blue);
  transform: translate(-50%, -100%) rotate(-45deg) scale(1.12);
}

.map-pin.single {
  width: 36px;
  height: 36px;
}

.map-location-list {
  display: grid;
  gap: 10px;
}

.location-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
}

.location-row span {
  color: var(--muted);
  font-weight: 750;
}

.property-map-card {
  padding: 22px;
}

.developer-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  padding: 24px;
  align-items: start;
}

.developer-logo {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 24px;
  background: var(--dark-card);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 950;
}

.dark-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.26), transparent 38%),
    var(--dark-card);
  color: #fff;
  padding: clamp(24px, 5vw, 44px);
}

.dark-panel h2,
.dark-panel h3 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.dark-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.mini-stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.mini-stat strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.mini-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}

.side-panel {
  display: grid;
  align-content: space-between;
  gap: 16px;
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 28px;
  box-shadow: var(--soft-shadow);
}

.page-hero {
  padding: 70px 0 34px;
}

.page-hero h1 {
  max-width: 880px;
  margin: 10px 0 12px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.filters .search-panel,
.search-panel.compact {
  grid-template-columns: 1fr;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.filters .search-panel .button,
.search-panel.compact .button {
  grid-column: auto;
}

.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.empty-state {
  padding: 34px;
  text-align: center;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 22px;
  align-items: start;
}

.gallery {
  display: grid;
  gap: 12px;
}

.gallery-main {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d9e2ec;
}

.gallery-main img,
.gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumb {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #fff;
  padding: 0;
}

.thumb.active {
  border-color: var(--blue);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  padding: 22px;
}

.detail-price {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-list li {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 11px 12px;
  color: rgba(16, 24, 40, 0.82);
  font-weight: 700;
}

.roi-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  border-radius: var(--radius-md);
  background: var(--dark-card);
  color: #fff;
  padding: 22px;
}

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

.roi-card .field label {
  color: rgba(255, 255, 255, 0.72);
}

.roi-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.roi-result div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
}

.roi-result strong {
  display: block;
  font-size: 1.1rem;
}

.roi-result span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 750;
}

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

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.legal-copy {
  max-width: 860px;
  color: rgba(16, 24, 40, 0.82);
}

.legal-copy h2 {
  margin-top: 34px;
}

.admin-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: start;
}

.admin-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.admin-item {
  display: grid;
  gap: 3px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  text-align: left;
}

.admin-item.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.admin-form {
  padding: 18px;
}

.admin-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.notice {
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-dark);
  padding: 14px 16px;
  font-weight: 750;
}

.footer {
  margin-top: 60px;
  background: #0d1323;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 42px 0;
}

.footer p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: end;
  gap: 10px;
}

.footer-links a {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  padding: 6px 12px;
  font-weight: 700;
}

.cookie {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: 16px;
  display: none;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: #101828;
  color: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.cookie.show {
  display: block;
}

.cookie p {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.72);
}

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

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

.divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.mobile-only {
  display: none;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 74px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-link {
    justify-content: center;
    min-height: 46px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-actions .button {
    display: none;
  }

  .search-panel {
    grid-template-columns: 1fr 1fr;
  }

  .search-panel .button {
    grid-column: 1 / -1;
  }

  .grid.three,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band,
  .map-layout,
  .catalog-layout,
  .detail-layout,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .filters,
  .detail-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 22px, 1180px);
    --radius-lg: 22px;
    --radius-md: 18px;
  }

  .brand-area {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    padding-top: 74px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 4.6rem);
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .search-panel,
  .grid.two,
  .grid.three,
  .grid.four,
  .form-grid,
  .roi-grid,
  .roi-result,
  .mini-stats,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .section-head,
  .property-top,
  .results-meta,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
    display: flex;
  }

  .footer-links {
    justify-content: start;
  }

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

  .albania-map,
  .google-map {
    min-height: 420px;
  }

  .map-land {
    inset: 8% 8% 8% 28%;
  }

  .developer-card {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.6rem);
  }

  .cookie {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
