/* ===== CSS RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }
input, select, textarea, button { max-width: 100%; }

:root {
  --navy: #1A2B42;
  --gold: #C4A77D;
  --earth: #947D6C;
  --lavender: #8A7DC4;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --navy-90: rgba(26, 43, 66, 0.9);
  --navy-70: rgba(26, 43, 66, 0.7);
  --navy-50: rgba(26, 43, 66, 0.5);
  --gold-20: rgba(196, 167, 125, 0.2);
  --gold-light: #D4BFA0;
  --text-dark: #1A2B42;
  --text-body: #3A4A5C;
  --text-muted: #6B7B8D;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(26,43,66,0.06);
  --shadow-md: 0 8px 30px rgba(26,43,66,0.1);
  --shadow-lg: 0 20px 60px rgba(26,43,66,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Ovo', Georgia, serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.font-brand { font-family: 'Cinzel', serif; }
.font-heading { font-family: 'Inknut Antiqua', serif; }
.font-body { font-family: 'Ovo', Georgia, serif; }

h1, h2, h3 { font-family: 'Inknut Antiqua', serif; color: var(--navy); line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 500; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; }
p { margin-bottom: 1rem; }

a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--transition); }
a:hover { color: var(--earth); }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--alt { background: var(--light-gray); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.8); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }

.label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section--dark .label { color: var(--gold-light); }

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 30px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--earth);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,167,125,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--transition);
}

.nav.scrolled,
.nav.nav--solid {
  background: rgba(26, 43, 66, 0.98);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(196,167,125,0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav__links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  font-family: 'Ovo', serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}

.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__lang {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}

.nav__lang button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.nav__lang button.active,
.nav__lang button:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,167,125,0.1);
}

.nav__cta {
  display: none;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--transition);
  border-radius: 2px;
}

.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-90);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.4rem;
  color: var(--white);
  opacity: 0.8;
  transition: all 0.3s;
}

.nav__mobile a:hover { color: var(--gold); opacity: 1; }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 43, 66, 0.85) 0%,
    rgba(26, 43, 66, 0.6) 50%,
    rgba(26, 43, 66, 0.75) 100%
  );
  z-index: 1;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 24px 80px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero__content {
    padding: 160px 24px 120px;
    margin: 0 0 0 max(24px, calc((100vw - 1200px)/2 + 24px));
  }
}

.hero__label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__subtitle {
  font-family: 'Ovo', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 768px) {
  .about__inner { grid-template-columns: 1fr 1fr; }
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-50), var(--earth));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  z-index: 2;
}

.about__image-accent .num {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.about__image-accent .txt {
  font-family: 'Ovo', serif;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(26,43,66,0.1);
}

.about__stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SERVICES ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26,43,66,0.06);
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--earth));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem;
  color: var(--gold);
}

.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== PROPERTIES ===== */
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.property-card__image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy), var(--earth));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-card__image-placeholder {
  color: rgba(255,255,255,0.5);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* Listing type label (Prodej / Pronájem) - top right on card image */
.property-card__listing-type {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  z-index: 2;
}
.property-card__listing-type.listing-type--rent {
  background: var(--gold);
  color: var(--navy);
}

/* Custom badge (admin-set) - top left on card image */
.property-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
}

/* Price suffix for rent */
.price-suffix {
  font-size: 0.65em;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
}
.price-fees-note {
  display: block;
  font-family: 'Ovo', serif;
  font-size: 0.48em;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
}

.property-card__penb {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.penb-a { background: #2d8c3c; }
.penb-b { background: #5ba829; }
.penb-c { background: #c4d42d; color: var(--navy); }
.penb-d { background: #ffd500; color: var(--navy); }
.penb-e { background: #f5a623; }
.penb-f { background: #e8601c; }
.penb-g { background: #d0202e; }

.property-card__body {
  padding: 24px;
}

.property-card__location {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.property-card__title {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.property-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.property-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.meta-icon {
  color: var(--gold);
  font-style: normal;
  font-size: 1em;
}

.property-card__price {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
}
/* Price per m² on property card */
.property-card__price-per-m2 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.property-card__price-per-m2-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--gold-20);
  color: var(--gold);
  padding: 1px 5px;
  border-radius: 3px;
  line-height: 1.4;
}

.property-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(26,43,66,0.08);
}

/* ===== REGIONS ===== */
.region-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--navy);
  display: block;
  color: inherit;
}
.region-card__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s var(--transition);
}
.region-card:hover .region-card__bg-img { transform: scale(1.05); }
.region-card__badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .region-card { aspect-ratio: auto; min-height: 420px; }
}

.region-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--earth));
  opacity: 0.8;
  transition: transform 0.6s var(--transition);
}

.region-card:hover .region-card__bg { transform: scale(1.05); }

.region-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,43,66,0.92) 0%, rgba(26,43,66,0.5) 50%, rgba(26,43,66,0.4) 100%);
  z-index: 1;
}

.region-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
}

.region-card__title {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.region-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}

.region-card__link {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.region-card:hover .region-card__link { gap: 14px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-card__quote {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.testimonial-card__name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* ===== LEAD MAGNET / CTA ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,167,125,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cta__inner { grid-template-columns: 1fr 1fr; }
}

.cta__form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(196,167,125,0.15);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,167,125,0.2);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Ovo', serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0F1A28;
  color: rgba(255,255,255,0.78);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 4px; }

.footer a { color: rgba(255,255,255,0.78); font-size: 0.88rem; }
.footer a:hover { color: var(--gold); }

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }

.footer__brand-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.95rem, 3.2vw, 1.3rem);
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 2px;
  display: block;
  white-space: nowrap;
}

.footer__slogan {
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer__company {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.78rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s var(--transition);
  border-top: 1px solid var(--gold);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner p {
  font-size: 0.85rem;
  max-width: 700px;
  margin: 0;
}

.cookie-banner a { color: var(--gold); text-decoration: underline; }

.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== NUMBER COUNTER ===== */
.counter { display: inline-block; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--transition);
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__text {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.preloader__bar {
  width: 120px;
  height: 2px;
  background: rgba(196,167,125,0.2);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: preloaderFill 1.5s var(--transition) forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ===== RESPONSIVE FINE-TUNE ===== */
@media (max-width: 767px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .section--alt { padding: 50px 0; }
  .text-center.mb-5 { margin-bottom: 28px !important; }
  .text-center.mb-5 h2 { font-size: 1.3rem; }
  .about__image-accent { width: 100px; height: 100px; bottom: -12px; right: -8px; }
  .about__image-accent .num { font-size: 2rem; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
  .about__stat-num { font-size: 1.4rem; }
  .about__stat-label { font-size: 0.72rem; }
  .form-row { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  /* Hero mobile */
  .hero { min-height: 100svh; }
  .hero__content { padding: 110px 20px 100px; }
  .hero h1 { font-size: 1.65rem; margin-bottom: 16px; }
  .hero__label { font-size: 0.6rem; letter-spacing: 2px; margin-bottom: 16px; gap: 10px; }
  .hero__label::before { width: 24px; }
  .hero__subtitle { font-size: 0.92rem; line-height: 1.7; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.78rem; letter-spacing: 1.5px; }
  .hero__scroll { bottom: 20px; }
  .hero__scroll span { font-size: 0.6rem; }
  .hero__scroll-line { height: 28px; }

  /* Services cards */
  .service-card { padding: 28px 22px; }
  .service-card__icon { width: 52px; height: 52px; font-size: 1.2rem; margin-bottom: 16px; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.88rem; }

  /* Process */
  .grid-2 { gap: 28px; }
  .process-step { gap: 16px; margin-bottom: 28px; }
  .process-step__num { width: 36px; height: 36px; font-size: 0.7rem; flex-shrink: 0; }
  .process-step__content h3 { font-size: 0.95rem; }
  .process-step__content p { font-size: 0.88rem; }

  /* Region cards */
  .region-card { min-height: 200px; }

  /* Testimonials */
  .testimonial-card { padding: 28px 22px; }
  .testimonial-card p { font-size: 0.9rem; }

  /* CTA section */
  .cta-section { padding: 60px 0; }
  .cta__inner { gap: 36px; }
  .cta-section h2 { font-size: 1.3rem; }
  .cta-section p { font-size: 0.9rem; }
  .cta__form { padding: 28px 20px; }
  .cta__form h3 { font-size: 1.05rem; }

  /* Project banner */
  .project-banner-card__inner { grid-template-columns: 1fr; }
  .project-banner-card__image { min-height: 180px; }
  .project-banner-card__body { padding: 22px; }
  .project-banner-card__title { font-size: 1.05rem; }
  .project-banner-card__desc { font-size: 0.85rem; }
  .project-banner-card__meta { gap: 12px; }
}

/* Extra small screens */
@media (max-width: 380px) {
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .about__stat-num { font-size: 1.2rem; }
  .about__stat-label { font-size: 0.65rem; }
  .hero h1 { font-size: 1.45rem; }
  .hero__subtitle { font-size: 0.85rem; }
  .hero__actions .btn { font-size: 0.72rem; padding: 12px 20px; }
}

/* ===== PROCESS / TIMELINE ===== */
.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.process-step__content h3 { margin-bottom: 8px; }
.process-step__content p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== MARKET INSIGHT BAR ===== */
.market-bar {
  background: linear-gradient(135deg, var(--navy), #243B56);
  padding: 24px 0;
  border-bottom: 1px solid rgba(196,167,125,0.15);
}

.market-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.market-bar__item {
  text-align: center;
}

.market-bar__value {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.market-bar__label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

/* Organic shapes */
.organic-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}

/* =============================================================
   SUBPAGES — Breadcrumb, Property Detail, Property List, Pages
   ============================================================= */

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  padding: 120px 0 20px;
  background: var(--light-gray);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-family: 'Ovo', Georgia, serif;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--earth); }
.breadcrumb-separator { color: var(--text-muted); }
.breadcrumb-current { color: var(--text-dark); font-weight: 500; }
.breadcrumb-section--sub { padding: 18px 0; }

/* ===== HERO (subpages) ===== */
.hero-secondary,
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, #2A3E58 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-secondary::before,
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.03;
}
.hero-secondary h1,
.hero-secondary .hero-title,
.page-hero h1,
.page-hero .hero-title {
  color: var(--white);
  margin-bottom: 12px;
}
.hero-secondary p,
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 20px; }
.hero-background { position: absolute; inset: 0; }
.hero-overlay { position: absolute; inset: 0; background: var(--navy); opacity: 0.85; }

/* ===== PROPERTY HERO IMAGE ===== */
.property-hero { margin-top: 80px; }
.property-hero-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  background: var(--light-gray);
}
.property-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 500px;
}
.property-hero-placeholder {
  height: 300px;
  background: linear-gradient(135deg, var(--navy), var(--earth));
}

/* ===== PROPERTY DETAIL ===== */
.property-detail {
  padding: 60px 0 80px;
}
.property-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.property-main {
  min-width: 0;
  overflow: hidden;
}
.property-header { margin-bottom: 32px; }
.property-detail-title {
  font-family: 'Inknut Antiqua', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.property-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.property-listing-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
}
.property-listing-badge.listing-badge--rent {
  background: var(--gold);
  color: var(--navy);
}
.property-type-badge {
  display: inline-block;
  background: var(--gold-20);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
}
.property-detail-location {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.property-detail-price {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
/* Price per m² badge (detail header) */
.price-per-m2-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 8px 18px;
  background: rgba(196,167,125,0.08);
  border: 1px solid rgba(196,167,125,0.25);
  border-radius: 6px;
}
.price-per-m2-badge__label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-per-m2-badge__value {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

/* Gallery */
.property-gallery { margin-bottom: 40px; }
.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--light-gray);
}
.gallery-main img#mainImage {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

/* Gallery Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 43, 66, 0.65);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.gallery-arrow:hover { background: rgba(26, 43, 66, 0.9); }
.gallery-arrow--prev { left: 12px; }
.gallery-arrow--next { right: 12px; }

/* Gallery Fullscreen Button */
.gallery-fullscreen-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26, 43, 66, 0.65);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.gallery-fullscreen-btn:hover { background: rgba(26, 43, 66, 0.9); }

/* Gallery Counter */
.gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(26, 43, 66, 0.7);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 3;
  backdrop-filter: blur(4px);
}

.gallery-viz-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(26, 43, 66, 0.82);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  z-index: 3;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.thumb-wrap {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.thumb-wrap .thumbnail { display: block; }

.thumb-viz-badge {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 43, 66, 0.85);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 10px;
  white-space: nowrap;
  pointer-events: none;
}

/* Thumbnails */
.gallery-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-thumbnails .thumbnail {
  width: 90px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.3s var(--transition);
  flex-shrink: 0;
}
.gallery-thumbnails .thumbnail:hover { opacity: 1; }
.gallery-thumbnails .thumbnail.active {
  opacity: 1;
  border-color: var(--gold);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s;
}
.lightbox-arrow:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-arrow--prev { left: 20px; }
.lightbox-arrow--next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  z-index: 2;
}

/* Description */
.property-description {
  margin-bottom: 40px;
}
.property-description h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-20);
}
.description-text {
  line-height: 1.8;
  color: var(--text-body);
}
.description-text h1 {
  font-size: 1.35rem;
  margin: 2rem 0 0.8rem;
  color: var(--navy);
  line-height: 1.35;
}
.description-text h2 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.7rem;
  color: var(--navy);
  line-height: 1.4;
}
.description-text h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--navy);
  line-height: 1.45;
}
.description-text h4,
.description-text h5,
.description-text h6 {
  font-size: 0.95rem;
  margin: 1.2rem 0 0.5rem;
  color: var(--navy);
  line-height: 1.5;
}
.description-text h1:first-child,
.description-text h2:first-child,
.description-text h3:first-child {
  margin-top: 0;
}
.description-text p { margin-bottom: 1rem; }
.description-text ul,
.description-text ol { margin: 0 0 1rem 1.5rem; }
.description-text li { margin-bottom: 0.3rem; }

/* Inline images embedded by the admin via the rich-text editor.
   Quill emits raw <img> tags inside the article body — give them a
   sensible cap so they don't dominate the column (the main content
   column is ~770px wide on desktop, which is too large for an inline
   article photo). They still go full-width on narrow viewports. */
.description-text img {
  display: block;
  width: auto;
  max-width: min(100%, 560px);
  height: auto;
  margin: 1.75rem auto;
  border-radius: var(--radius, 8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.description-text p > img {
  /* When Quill wraps an image in a <p>, kill the paragraph spacing under it */
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
/* Quill alignment classes — let the editor decide left/center/right.
   Default is centered (margin: auto above). */
.description-text img.ql-align-center,
.description-text p.ql-align-center > img {
  margin-left: auto;
  margin-right: auto;
}
.description-text img.ql-align-left,
.description-text p.ql-align-left > img {
  margin-left: 0;
  margin-right: auto;
}
.description-text img.ql-align-right,
.description-text p.ql-align-right > img {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 600px) {
  .description-text img {
    max-width: 100%;
    margin: 1.25rem auto;
  }
}

/* Features Grid */
.property-features {
  margin-bottom: 40px;
}
.property-features h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-20);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius);
}
.feature-icon {
  font-size: 1.4rem;
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Segoe UI Symbol', 'Apple Symbols', sans-serif;
  text-rendering: optimizeLegibility;
}
.feature-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.feature-value {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
/* Highlighted feature (e.g. price per m²) */
.feature-item--highlight {
  background: var(--navy);
}
.feature-item--highlight .feature-icon {
  background: rgba(196,167,125,0.2);
  color: var(--gold);
}
.feature-item--highlight .feature-label {
  color: rgba(255,255,255,0.55);
}
.feature-item--highlight .feature-value {
  color: var(--gold);
}

/* Amenities */
.property-amenities { margin-bottom: 40px; }
.property-amenities h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-20);
}
.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.amenities-list li {
  padding: 10px 16px;
  background: var(--light-gray);
  border-radius: 6px;
  font-size: 0.92rem;
  position: relative;
  padding-left: 32px;
}
.amenities-list li::before {
  content: '\2713';
  position: absolute;
  left: 12px;
  color: var(--gold);
  font-weight: 700;
}

/* Sidebar */
.property-sidebar {
  position: sticky;
  top: 100px;
}
.property-sidebar-box {
  background: var(--white);
  border: 1px solid rgba(26,43,66,0.08);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.property-sidebar-box h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-20);
}
.highlight-box {
  background: var(--navy);
}
.highlight-box h3 {
  color: var(--gold);
  border-bottom-color: rgba(196,167,125,0.3);
}
.sidebar-price {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0;
}
/* Price per m² in sidebar */
.sidebar-price-per-m2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(196,167,125,0.2);
}
.sidebar-price-per-m2__label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.sidebar-price-per-m2__value {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.quick-facts { display: flex; flex-direction: column; gap: 12px; }
.quick-fact {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.92rem;
}
.fact-label { color: var(--text-muted); }
.fact-value { font-weight: 600; color: var(--navy); }

/* Contact Form (sidebar — CTA style) */
.property-sidebar-box--cta {
  background: var(--navy);
  border-color: rgba(196,167,125,0.15);
}
.property-sidebar-box--cta h3 {
  color: var(--gold);
  border-bottom-color: rgba(196,167,125,0.3);
}
.property-contact-form .form-group { margin-bottom: 16px; }
.property-contact-form .form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.property-contact-form input,
.property-contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,167,125,0.2);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Ovo', serif;
  font-size: 0.92rem;
  transition: border-color 0.3s;
  outline: none;
}
.property-contact-form input::placeholder,
.property-contact-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.property-contact-form input:focus,
.property-contact-form textarea:focus {
  border-color: var(--gold);
}
.property-contact-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.property-contact-form .form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.property-contact-form .form-consent label {
  font-family: 'Ovo', serif;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}
.property-contact-form .form-consent a {
  color: var(--gold);
}
.property-form-microcopy {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin-top: 12px;
  margin-bottom: 0;
}
.btn-block { width: 100%; text-align: center; }

/* Agent */
.agent-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.agent-contact { margin-top: 12px; }
.agent-contact p { margin-bottom: 6px; }
.agent-contact-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.agent-contact a {
  color: var(--gold);
  font-size: 0.92rem;
}

/* Rental Fees Table */
.property-fees {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}
.property-fees h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.fees-table {
  width: 100%;
  border-collapse: collapse;
}
.fees-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  font-family: 'Ovo', serif;
  font-size: 0.95rem;
}
.fees-table .fee-label {
  color: var(--text-muted);
}
.fees-table .fee-amount {
  text-align: right;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.fees-table .fee-period {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.fees-table tfoot .fees-total td {
  border-bottom: none;
  border-top: 2px solid var(--gold);
  padding-top: 16px;
}
.fees-table tfoot .fees-total .fee-label {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}
.fees-table tfoot .fees-total .fee-amount {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--gold);
}
.fees-table tfoot .fees-deposit td {
  border-top: none;
  padding-top: 10px;
  padding-bottom: 0;
}
.fees-table tfoot .fees-deposit .fee-label {
  color: var(--text-muted);
  font-style: italic;
}
.fees-table tfoot .fees-deposit .fee-amount {
  color: var(--navy);
  font-weight: 600;
}

/* Floor Plans */
.property-floorplans {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}
.property-floorplans h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.floorplans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.floorplan-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26,43,66,0.08);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white);
}
.floorplan-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.floorplan-item img {
  width: 100%;
  height: auto;
  display: block;
}
.floorplan-label {
  display: block;
  padding: 10px 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  background: var(--light-gray);
}

/* Video */
.property-video-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}
.property-video-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}
/* Custom video player */
.property-video-player {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26,43,66,0.08);
  box-shadow: var(--shadow-sm);
  background: #000;
  margin-bottom: 24px;
}
.property-video-player video {
  display: block;
  width: 100%;
  max-height: 540px;
  background: #000;
}
/* YouTube embed */
.property-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26,43,66,0.08);
  box-shadow: var(--shadow-sm);
}
.property-video-container--secondary {
  margin-top: 8px;
}
.property-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.property-video-label {
  position: absolute;
  top: -28px;
  left: 0;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1;
}

/* Map */
.property-map-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}
.property-map-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.property-map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26,43,66,0.08);
  box-shadow: var(--shadow-sm);
}

/* Share */
.share-buttons { display: flex; gap: 10px; }
.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(26,43,66,0.12);
  background: var(--light-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
}
.share-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ===== PROPERTIES LIST (nabidky.php) ===== */
.properties-section {
  padding: 60px 0 80px;
}

/* No properties message */
.no-properties {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.no-properties h2 { margin-bottom: 12px; }

/* ===== FILTERS ===== */
.filter-section {
  padding: 40px 0 0;
}
.filter-form .filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  align-items: end;
}
.filter-group label {
  display: block;
  font-size: 0.8rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.filter-select,
.filter-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(26,43,66,0.15);
  border-radius: 8px;
  font-family: 'Ovo', Georgia, serif;
  font-size: 0.9rem;
  background: var(--white);
  transition: border-color 0.3s;
}
.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: var(--gold);
}
.filter-submit {
  display: flex;
  gap: 8px;
  align-items: end;
}
.filter-results {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
  list-style: none;
}
.pagination a,
.pagination button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  border: 1px solid rgba(26,43,66,0.12);
  color: var(--text-body);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.pagination-info {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0 8px;
  white-space: nowrap;
}
.pagination a:hover,
.pagination button:not(:disabled):hover {
  background: var(--gold-20);
  border-color: var(--gold);
  color: var(--navy);
}
.pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}
.pagination .active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ===== REGION ARTICLE DETAIL ===== */
.region-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.region-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.region-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}
.region-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,43,66,0.95) 0%, rgba(26,43,66,0.4) 60%, rgba(26,43,66,0.2) 100%);
}
.region-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 0 50px;
  color: var(--white);
}
.region-hero__content .label {
  color: var(--gold);
}
.region-hero__content h1 {
  font-family: 'Inknut Antiqua', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin: 12px 0 8px;
}
.region-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.6;
}

/* Article layout */
.region-article-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}
.region-article-content {
  min-width: 0;
}

/* Sidebar with assigned properties */
.region-article-sidebar {
  position: sticky;
  top: 30px;
}
.region-article-sidebar h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-20);
}
.region-property-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.region-property-card {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: var(--light-gray);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.region-property-card:hover {
  border-color: var(--gold-20);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.region-property-card__img {
  width: 90px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy);
}
.region-property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.region-property-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A2B42, #947D6C);
}
.region-property-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.region-property-card__title {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.region-property-card__location {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.region-property-card__price {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

/* Mobile responsive (legacy layout) */
@media (max-width: 900px) {
  .region-article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .region-article-sidebar {
    position: static;
  }
  .region-hero { min-height: 280px; }
}

/* ===== REGION DETAIL (redesigned) ===== */

.region-hero--detail { min-height: 420px; }

/* Detail layout — content + sidebar */
.region-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}
.region-detail-main {
  min-width: 0;
}
.region-detail-sidebar {
  position: sticky;
  /* Fixed nav is ~68px high when scrolled (.nav.scrolled padding 12px + ~44px logo).
     Use 100px so the "Kontakt na makléře" heading isn't covered by the nav. */
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Tighter top spacing for the region detail content section.
   Default .section has 100px top padding, which combined with the
   breadcrumb leaves a large empty area above the article. */
.section--region-detail {
  padding-top: 50px;
}

/* Section titles inside content */
.region-section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 50px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-20);
}

/* Photo Gallery */
.region-gallery-section {
  margin-top: 10px;
}
.region-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.region-gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  cursor: pointer;
}
.region-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.region-gallery__item:hover img {
  transform: scale(1.06);
}
.region-gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(26,43,66,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.region-gallery__item:hover .region-gallery__hover {
  opacity: 1;
}
.region-gallery__hover span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 300;
}

/* Region offers section */
.region-offers-section {
  background: var(--light-gray);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.region-offers-section .grid-3 {
  justify-items: center;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
}

/* Sidebar agent styling */
.agent-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
}
.agent-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.agent-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.agent-contact p {
  font-size: 0.9rem;
  margin: 0;
}
.agent-contact-label {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.agent-contact a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.agent-contact a:hover {
  text-decoration: underline;
}

/* Region CTA form description */
.region-cta-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Sidebar "all offers" link */
.region-sidebar-all-link {
  display: block;
  text-align: center;
  padding: 12px 0 0;
  margin-top: 14px;
  border-top: 1px solid var(--gold-20);
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.region-sidebar-all-link:hover {
  color: var(--navy);
}

/* Responsive: region detail */
@media (max-width: 1024px) {
  .region-detail-layout {
    grid-template-columns: 1fr 340px;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .region-hero--detail { min-height: 300px; }

  .region-detail-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .region-detail-sidebar {
    position: static;
    margin-top: 40px;
  }
  .section--region-detail {
    padding-top: 32px;
  }

  .region-gallery {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .region-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== PAGE CONTENT (stranka.php) ===== */
.page-content {
  padding: 60px 0 80px;
}
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.page-text {
  line-height: 1.8;
  color: var(--text-body);
}
.page-text h2 { font-size: 1.4rem; margin: 2rem 0 1rem; }
.page-text h3 { font-size: 1.1rem; margin: 1.5rem 0 0.8rem; }
.page-text p { margin-bottom: 1rem; }
.page-text ul,
.page-text ol { margin: 0 0 1rem 1.5rem; }
.page-text li { margin-bottom: 0.4rem; }
.page-text a { color: var(--gold); text-decoration: underline; }
.page-text a:hover { color: var(--earth); }
.page-navigation {
  padding: 0 0 60px;
  text-align: center;
}

/* ===== FILTERS SECTION (nabidky.php) ===== */
.filters-section {
  padding: 40px 0 0;
}
.filters-section h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-20);
}
.filters-form {
  background: rgba(26,43,66,0.03);
  border: 1px solid rgba(26,43,66,0.08);
  border-radius: 12px;
  padding: 24px;
}
.filters-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: end;
}
.filters-grid--4 .filter-group label {
  display: block;
  font-size: 0.75rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}
.filters-grid--4 .filter-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(26,43,66,0.15);
  border-radius: 8px;
  font-family: 'Ovo', Georgia, serif;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
  background-image: 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='%231A2B42' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.filters-grid--4 .filter-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,167,125,0.15);
}
.filter-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(26,43,66,0.06);
}
.filter-actions .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  padding: 11px 32px;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}
.filter-actions .btn-primary:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.filter-actions .btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(26,43,66,0.15);
  padding: 11px 32px;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-actions .btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter-results {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== SPECIAL PROJECT MICROSITE ===== */

/* Hero */
.project-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-hero__bg {
  position: absolute;
  inset: 0;
  background: #1A2B42;
}
.project-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.project-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,43,66,0.55) 0%,
    rgba(26,43,66,0.40) 40%,
    rgba(26,43,66,0.65) 100%
  );
  z-index: 1;
}
.project-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 20px 60px;
  max-width: 800px;
}
.project-hero__cta {
  padding: 16px 40px;
  font-size: 0.9rem;
}
.project-hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding: 0;
  border: none;
  border-radius: 0;
}
.project-hero__label::before,
.project-hero__label::after {
  content: '';
  width: 36px;
  height: 1px;
  background: rgba(196,167,125,0.55);
}
.project-hero__title {
  font-family: 'Inknut Antiqua', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 22px;
  font-weight: 500;
}
.project-hero__subtitle {
  font-family: 'Ovo', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.project-hero__stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin-bottom: 44px;
}
.project-hero__stat {
  text-align: center;
  padding: 4px 38px;
  position: relative;
}
.project-hero__stat + .project-hero__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(196,167,125,0.28);
}
.project-hero__stat-number {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.project-hero__stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Cinzel', serif;
}

/* About project */
.project-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.project-about__text p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.project-about__text strong {
  color: var(--navy);
}
.project-about__highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.project-highlight {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.project-highlight:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.project-highlight__icon {
  font-size: 1.4rem;
  color: var(--gold);
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-20);
  border-radius: 50%;
}
.project-highlight p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.project-highlight strong {
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
}

/* Masterplan */
.project-masterplan {
  margin-bottom: 30px;
}
.project-masterplan__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.project-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.project-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-body);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
}
.project-legend__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.project-legend__dot--volny { background: #2ecc71; }
.project-legend__dot--rezervace { background: #f39c12; }
.project-legend__dot--prodano { background: #e74c3c; }

/* Plots table */
.project-plots-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.project-plots-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Ovo', serif;
}
.project-plots-table thead {
  background: var(--navy);
  color: var(--white);
}
.project-plots-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.project-plots-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}
.project-plots-table tbody tr:last-child {
  border-bottom: none;
}
.project-plots-table tbody tr:hover {
  background: #f8f6f3;
}
.project-plots-table td {
  padding: 13px 18px;
  font-size: 0.9rem;
  color: var(--text);
  vertical-align: middle;
}
.project-plots-table__num {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--navy);
  width: 50px;
}
.project-plots-table__label {
  font-weight: 600;
  color: var(--navy);
}
.project-plots-table__area {
  white-space: nowrap;
}
.project-plots-table__price .price-tbd {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.project-plots-table__price .price-vat {
  color: var(--text-muted);
  font-size: 0.75rem;
}
.project-plots-table__status {
  display: inline-block;
  font-size: 0.72rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}
.project-plots-table__status--volny { background: rgba(46,204,113,0.15); color: #27ae60; }
.project-plots-table__status--rezervace { background: rgba(243,156,18,0.15); color: #e67e22; }
.project-plots-table__status--prodano { background: rgba(231,76,60,0.15); color: #c0392b; }
.project-plots-table__row--prodano td {
  opacity: 0.55;
}
.project-plots-table__row--prodano td:nth-child(5),
.project-plots-table__row--prodano td:nth-child(6) {
  opacity: 1;
}
.project-plots-table__action {
  text-align: right;
  white-space: nowrap;
}

/* Price note */
.project-plots-price-note {
  background: rgba(196,167,125,0.1);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 24px;
}
.project-plots-price-note p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Desktop/mobile toggle */
.project-plots--mobile { display: none; }
.project-plots--desktop { display: block; }

/* Mobile plot cards */
.project-plot-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  border-left: 4px solid #2ecc71;
}
.project-plot-card--rezervace { border-left-color: #f39c12; }
.project-plot-card--prodano { border-left-color: #e74c3c; opacity: 0.6; }
.project-plot-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.project-plot-card__name {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.project-plot-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.project-plot-card__detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-family: 'Cinzel', serif;
}
.project-plot-card__detail-value {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-top: 2px;
}

/* House note */
.project-house-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 24px;
  font-style: italic;
}

/* House cards */
.project-house-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.project-house-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.project-house-card__image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy), var(--earth));
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-house-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-house-card__placeholder {
  color: rgba(255,255,255,0.5);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.project-house-card__body {
  padding: 24px;
}
.project-house-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.project-house-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.project-house-card__features {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.project-house-card__features span {
  font-size: 0.75rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  padding: 4px 12px;
  background: var(--gold-20);
  color: var(--navy);
  border-radius: 20px;
  text-transform: uppercase;
}
.project-house-card__price {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.project-house-card__price strong {
  color: var(--gold);
  font-size: 1rem;
}

/* Feature cards */
.project-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-feature-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.project-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.project-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--gold-20);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--gold);
}
.project-feature-card h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.project-feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Location */
.project-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.project-location__text p {
  margin-bottom: 24px;
  line-height: 1.8;
}
.project-location__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.project-location__fact {
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.project-location__fact strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.project-location__fact span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.project-location__map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26,43,66,0.08);
  box-shadow: var(--shadow-sm);
}

/* Timeline */
.project-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.project-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--gold-20);
}
.project-timeline__step {
  text-align: center;
  position: relative;
}
.project-timeline__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(196,167,125,0.3);
}
.project-timeline__step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.project-timeline__step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Special project banner card (for homepage & listings) */
.project-banner-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1A2B42, #2A4A6B);
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--transition);
  grid-column: 1 / -1;
}
.project-banner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-banner-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}
.project-banner-card__image {
  background: linear-gradient(135deg, rgba(196,167,125,0.2), rgba(26,43,66,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-banner-card__image-placeholder {
  color: rgba(255,255,255,0.4);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-align: center;
}
.project-banner-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.project-banner-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  font-weight: 600;
}
.project-banner-card__body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-banner-card__label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.project-banner-card__title {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}
.project-banner-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  line-height: 1.6;
}
.project-banner-card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.project-banner-card__meta span {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}
.project-banner-card__meta strong {
  color: var(--gold);
}
.project-banner-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid rgba(196,167,125,0.4);
  border-radius: 6px;
  transition: all 0.3s;
  align-self: flex-start;
}
.project-banner-card__cta:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ===== SUBPAGE RESPONSIVE ===== */

/* --- Tablet (max 900px) --- */
@media (max-width: 900px) {
  .property-detail-grid {
    grid-template-columns: 1fr;
  }
  .property-sidebar {
    position: static;
  }
  .properties-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  .filters-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* --- Mobile (max 767px) --- */
@media (max-width: 767px) {
  /* Hero & breadcrumb */
  .breadcrumb-section { padding: 100px 0 16px; }
  .hero-secondary,
  .page-hero { padding: 130px 0 60px; }
  .hero-secondary h1,
  .page-hero h1 { font-size: 1.6rem; }
  .hero-secondary p,
  .page-hero p { font-size: 0.95rem; }
  .property-hero { margin-top: 70px; }

  /* Property detail */
  .property-detail { padding: 30px 0 50px; }
  .property-detail-grid { gap: 24px; }
  .property-detail-title { font-size: 1.3rem; }
  .property-detail-price { font-size: 1.3rem; }
  .gallery-main img#mainImage { max-height: 280px; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
  .gallery-arrow--prev { left: 8px; }
  .gallery-arrow--next { right: 8px; }
  .gallery-fullscreen-btn { width: 34px; height: 34px; font-size: 0.9rem; top: 8px; right: 8px; }
  .gallery-counter { bottom: 8px; right: 8px; font-size: 0.7rem; padding: 3px 10px; }
  .lightbox-arrow { width: 44px; height: 44px; font-size: 1.1rem; }
  .lightbox-arrow--prev { left: 8px; }
  .lightbox-arrow--next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; font-size: 1.4rem; }
  .gallery-thumbnails .thumbnail { width: 64px; height: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feature-item { padding: 12px; gap: 10px; }
  .feature-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .feature-label { font-size: 0.7rem; }
  .feature-value { font-size: 0.92rem; }
  .amenities-list { grid-template-columns: 1fr; }
  .property-sidebar-box { padding: 20px; }
  .sidebar-price { font-size: 1.4rem; }
  .property-description h2,
  .property-features h2,
  .property-amenities h2,
  .property-fees h2,
  .property-floorplans h2,
  .property-video-section h2,
  .property-map-section h2 { font-size: 1.1rem; }
  .fees-table td { padding: 12px 0; font-size: 0.88rem; }
  .property-map-container { height: 320px; }
  .floorplans-grid { grid-template-columns: 1fr 1fr; }
  .share-buttons { flex-wrap: wrap; }
  .quick-fact { font-size: 0.85rem; }

  /* Properties listing */
  .properties-section { padding: 30px 0 50px; }

  /* Filters */
  .filters-section { padding: 24px 0 0; }
  .filters-section h2 { font-size: 1.1rem; margin-bottom: 16px; }
  .filters-form { padding: 16px; }
  .filters-grid--4 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .filter-actions { margin-top: 16px; padding-top: 16px; }

  /* Pagination */
  .pagination { flex-wrap: wrap; gap: 10px; margin-top: 30px; }
  .pagination a,
  .pagination button { min-width: 36px; height: 36px; font-size: 0.8rem; padding: 0 10px; }
  .pagination-info { font-size: 0.82rem; padding: 0 4px; }

  /* Project microsite */
  .project-hero { min-height: 80vh; }
  .project-hero__content { padding: 100px 16px 50px; max-width: 100%; }
  .project-hero__title { font-size: 1.5rem; }
  .project-hero__subtitle { font-size: 0.9rem; }
  .project-hero__stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .project-hero__stat-number { font-size: 1.2rem; }
  .project-hero__stat-label { font-size: 0.68rem; }
  .project-hero__label { font-size: 0.6rem; padding: 6px 14px; letter-spacing: 2px; }
  .project-hero__cta { padding: 14px 30px; font-size: 0.85rem; }
  .project-about__grid { grid-template-columns: 1fr; gap: 30px; }
  .project-about__text p { font-size: 0.92rem; }
  .project-highlight { padding: 16px; }
  .project-highlight__icon { min-width: 36px; height: 36px; font-size: 1.1rem; }
  .project-location-grid { grid-template-columns: 1fr; gap: 30px; }
  .project-location__map { height: 300px; }
  .project-features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .project-feature-card { padding: 20px; }
  .project-feature-card__icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .project-feature-card h3 { font-size: 0.95rem; }
  .project-feature-card p { font-size: 0.85rem; }
  .project-timeline { grid-template-columns: 1fr 1fr; gap: 30px; }
  .project-timeline::before { display: none; }
  .project-banner-card__inner { grid-template-columns: 1fr; }
  .project-banner-card__image { min-height: 200px; }
  .project-banner-card__body { padding: 24px; }
  .project-banner-card__title { font-size: 1.1rem; }
  .project-plots--desktop { display: none; }
  .project-plots--mobile { display: block; }
  .project-plots-price-note { font-size: 0.85rem; padding: 14px 16px; }
  .project-plots-price-note__mortgage { font-size: 0.78rem; }
  .project-house-card__body { padding: 16px; }
  .project-house-card__body h3 { font-size: 1rem; }
  .project-house-card__body p { font-size: 0.85rem; }
  .project-house-card__features { gap: 8px; }
  .project-house-card__features span { font-size: 0.75rem; padding: 4px 10px; }
  .project-house-card__price { font-size: 0.88rem; }
  .project-house-note { font-size: 0.82rem; }
  .section-subtitle { font-size: 0.9rem; }
  .project-video { border-radius: 8px; }

  /* Amenities responsive */
  .amenities-grid { grid-template-columns: 1fr; gap: 14px; }
  .amenity-card { padding: 18px; }
  .amenity-card__icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .amenity-card h4 { font-size: 0.9rem; }
  .amenity-card p { font-size: 0.84rem; }

  /* Transport responsive */
  .transport-strip { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; padding-top: 28px; }
  .transport-strip__icon { width: 40px; height: 40px; min-width: 40px; font-size: 1.1rem; }
  .transport-strip__item { gap: 12px; }
  .transport-strip__item strong { font-size: 0.85rem; word-break: break-word; }
  .transport-strip__item span { font-size: 0.82rem; word-break: break-word; }

  /* POI responsive */
  .poi-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .poi-card__image { height: 130px; }
  .poi-card__body { padding: 14px; }
  .poi-card h3 { font-size: 0.9rem; }
  .poi-card p { font-size: 0.82rem; }
  .poi-card__distance { font-size: 0.6rem; }

  /* Gallery responsive */
  .photo-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .photo-gallery__item { height: 150px; }
  .photo-gallery__item--wide { grid-column: span 2; height: 180px; }
  .photo-gallery__caption { font-size: 0.7rem; padding: 8px 12px; }

  /* Comparison responsive */
  .comparison-grid { grid-template-columns: 1fr; gap: 0; max-width: 100%; }
  .comparison-vs { padding: 0; }
  .comparison-vs span { width: 40px; height: 40px; font-size: 0.8rem; margin: -20px auto; position: relative; z-index: 2; }
  .comparison-card { border-radius: var(--radius); }
  .comparison-card__header { padding: 20px; }
  .comparison-card__body { padding: 20px; }
  .comparison-card__price { font-size: 1.2rem; }
  .comparison-card__city { font-size: 0.65rem; letter-spacing: 1.5px; }
  .comparison-card__type { font-size: 1rem; margin-bottom: 12px; }
  .comparison-card__list li { font-size: 0.92rem; padding: 7px 0; }
  .comparison-card__mortgage { font-size: 0.85rem; }
  .comparison-note { font-size: 0.78rem; margin-top: 16px; }
  .comparison-note { font-size: 0.78rem; }

  /* Harmonogram responsive */
  .harmonogram-timeline { padding-left: 36px; }
  .harmonogram-step { padding-bottom: 28px; }
  .harmonogram-step__marker { left: -36px; width: 22px; height: 22px; }
  .harmonogram-step h3 { font-size: 0.95rem; }
  .harmonogram-step p { font-size: 0.85rem; }
  .harmonogram-step__date { font-size: 0.65rem; }

  /* Lead magnet responsive */
  .lead-magnet { flex-direction: column; text-align: center; padding: 24px 18px; gap: 20px; }
  .lead-magnet__icon { width: 52px; height: 52px; min-width: 52px; font-size: 1.4rem; margin: 0 auto; }
  .lead-magnet__content h3 { font-size: 1rem; }
  .lead-magnet__content p { font-size: 0.85rem; }
  .lead-magnet__form { flex-direction: column; }
  .lead-magnet__input { min-width: 100%; font-size: 0.85rem; }
  .lead-magnet__note { font-size: 0.75rem; }

  /* Sticky CTA responsive */
  .sticky-cta { padding: 10px 14px; }
  .sticky-cta__inner { flex-direction: column; text-align: center; gap: 8px; }
  .sticky-cta__text { font-size: 0.82rem; }
  .sticky-cta__btn { font-size: 0.8rem; padding: 10px 24px; }

  /* Contact form (CTA section) responsive */
  .cta__form { padding: 24px 18px; }
  .cta-form-heading { font-size: 1rem; margin-bottom: 18px; }
  .cta__form .form-group label { font-size: 0.75rem; }
  .cta__form .form-group input,
  .cta__form .form-group select,
  .cta__form .form-group textarea { font-size: 0.88rem; padding: 10px 12px; }
  .form-consent { font-size: 0.78rem; }
  .form-consent label { font-size: 0.78rem; }
  .cta-desc { max-width: 100%; font-size: 0.9rem; }
  .cta-contact-list { margin-top: 28px; }
  .cta-contact-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1.1rem; }
  .cta-contact-label { font-size: 0.62rem; }
  .cta-contact-value { font-size: 0.95rem; }
  .cta-contact-value--muted { font-size: 0.82rem; }
  .cta-response-note { font-size: 0.8rem; }
}

/* ===== SECTION SUBTITLE ===== */
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 10px auto 0;
  line-height: 1.6;
}

/* ===== AMENITIES GRID (Občanská vybavenost) ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,43,66,0.06);
  transition: box-shadow 0.3s var(--transition);
}
.amenity-card:hover {
  box-shadow: var(--shadow-md);
}
.amenity-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.amenity-card h4 {
  font-family: 'Inknut Antiqua', serif;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.amenity-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ===== TRANSPORT STRIP ===== */
.transport-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(26,43,66,0.08);
}
.transport-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}
.transport-strip__item > div {
  min-width: 0;
  flex: 1;
}
.transport-strip__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}
.transport-strip__item strong {
  display: block;
  font-family: 'Inknut Antiqua', serif;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.transport-strip__item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== POI CARDS (Kam vyrazit) ===== */
.poi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.poi-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
}
.poi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.poi-card__image {
  height: 180px;
  overflow: hidden;
  background: var(--light-gray);
}
.poi-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.poi-card:hover .poi-card__img {
  transform: scale(1.05);
}
.poi-card__body {
  padding: 20px;
}
.poi-card__distance {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.poi-card h3 {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.poi-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo-gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  background: var(--light-gray);
}
.photo-gallery__item--wide {
  grid-column: span 2;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.photo-gallery__item:hover img {
  transform: scale(1.05);
}
.photo-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(26,43,66,0.75));
  color: var(--white);
  font-size: 0.82rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== CTA CONTACT (Project page) ===== */
.cta-label { color: var(--gold-light); }
.cta-heading { color: var(--white); }
.cta-divider { margin-left: 0; }
.cta-desc { color: rgba(255,255,255,0.7); max-width: 450px; }
.cta-contact-list { margin-top: 40px; }
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.cta-contact-item:last-child { margin-bottom: 0; }
.cta-contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(196,167,125,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.cta-contact-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.cta-contact-value { color: var(--white); font-size: 1.05rem; }
.cta-contact-value a { color: var(--white); text-decoration: none; }
.cta-contact-value a:hover { color: var(--gold); }
.cta-contact-value--muted { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.cta-form-heading { color: var(--white); margin-bottom: 24px; }
.cta-submit { width: 100%; justify-content: center; }
.cta-response-note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 12px;
}

/* ===== PROJECT VIDEO ===== */
.project-video {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50.625%; /* 16:9 ratio of max-width */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.project-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.3s var(--transition);
}
.sticky-cta--visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__text {
  color: var(--white);
  font-size: 0.95rem;
}
.sticky-cta__btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== MORTGAGE COLUMN ===== */
.project-plots-table__mortgage {
  color: var(--gold);
  font-size: 0.85rem;
  white-space: nowrap;
}
.project-plot-card__mortgage {
  color: var(--gold);
  font-size: 0.9rem;
}
.project-plots-price-note__mortgage {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
}

/* ===== PRAGUE vs BYSTŘICE COMPARISON ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.comparison-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
}
.comparison-card--bystrice {
  border-color: var(--gold);
}
.comparison-card__header {
  padding: 24px;
  text-align: center;
}
.comparison-card--prague .comparison-card__header {
  background: #E8E8E8;
}
.comparison-card--bystrice .comparison-card__header {
  background: var(--navy);
}
.comparison-card__city {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.comparison-card--prague .comparison-card__city { color: var(--text-muted); }
.comparison-card--bystrice .comparison-card__city { color: var(--gold); }
.comparison-card__price {
  display: block;
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.comparison-card--prague .comparison-card__price { color: var(--navy); }
.comparison-card--bystrice .comparison-card__price { color: var(--white); }
.comparison-card__body {
  padding: 24px;
}
.comparison-card__type {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.comparison-card__list {
  list-style: none;
  padding: 0;
}
.comparison-card__list li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-body);
}
.comparison-card__mortgage {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-vs span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.85rem;
}
.comparison-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: 6px;
  vertical-align: middle;
}
.comparison-icon--yes {
  background: var(--gold-20);
  color: var(--gold);
}
.comparison-icon--no {
  background: rgba(180, 60, 60, 0.1);
  color: #b43c3c;
}
.comparison-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 20px;
  font-style: italic;
}

/* ===== HARMONOGRAM ===== */
.harmonogram-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}
.harmonogram-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #ddd;
}
.harmonogram-step {
  position: relative;
  padding-bottom: 36px;
}
.harmonogram-step:last-child {
  padding-bottom: 0;
}
.harmonogram-step__marker {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #ddd;
  z-index: 1;
}
.harmonogram-step--done .harmonogram-step__marker {
  background: var(--gold);
  border-color: var(--gold);
}
.harmonogram-step--done .harmonogram-step__marker::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}
.harmonogram-step--active .harmonogram-step__marker {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 167, 125, 0.25);
}
.harmonogram-step--active .harmonogram-step__marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.harmonogram-step__date {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.harmonogram-step h3 {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.harmonogram-step p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== LEAD MAGNET ===== */
.lead-magnet {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.lead-magnet__icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: rgba(196, 167, 125, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
}
.lead-magnet__content h3 {
  font-family: 'Inknut Antiqua', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.lead-magnet__content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}
.lead-magnet__action {
  flex-shrink: 0;
}
.lead-magnet__form {
  display: flex;
  gap: 8px;
}
.lead-magnet__input {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9rem;
  min-width: 220px;
}
.lead-magnet__input::placeholder {
  color: rgba(255,255,255,0.4);
}
.lead-magnet__input:focus {
  outline: none;
  border-color: var(--gold);
}
.lead-magnet__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* --- Small mobile (max 480px) --- */
/* --- Medium mobile (max 640px) --- */
@media (max-width: 640px) {
  .poi-grid { grid-template-columns: 1fr; }
  .photo-gallery__item--wide { grid-column: span 1; }
  .photo-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .project-location__map { height: 280px; }
  .project-features-grid { grid-template-columns: 1fr; }
  .project-hero__stats { flex-direction: column; gap: 14px; }
  .comparison-card__price { font-size: 1.15rem; }
}

/* --- Small mobile (max 480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .section { padding: 40px 0; }
  .section--alt { padding: 40px 0; }
  .text-center.mb-5 { margin-bottom: 22px !important; }
  .text-center.mb-5 h2 { font-size: 1.15rem; }
  .divider { margin-top: 12px; margin-bottom: 12px; }
  .hero-secondary,
  .page-hero { padding: 110px 0 40px; }
  .hero-secondary h1,
  .page-hero h1 { font-size: 1.3rem; }

  /* Property detail */
  .features-grid { grid-template-columns: 1fr; }
  .floorplans-grid { grid-template-columns: 1fr; }
  .property-map-container { height: 280px; }
  .gallery-main img#mainImage { max-height: 220px; }
  .property-detail-title { font-size: 1.15rem; }
  .property-contact-form input,
  .property-contact-form textarea { padding: 12px 14px; font-size: 0.85rem; }
  .property-sidebar-box--cta { padding: 24px; }
  .property-contact-form .form-group label { font-size: 0.65rem; }
  .property-form-microcopy { font-size: 0.78rem; }

  /* Filters */
  .filters-grid--4 { grid-template-columns: 1fr; }
  .filters-form { padding: 14px; }
  .filter-actions .btn-primary,
  .filter-actions .btn-secondary { width: 100%; padding: 11px 16px; }

  /* Project microsite */
  .project-hero { min-height: 70vh; }
  .project-hero__content { padding: 80px 12px 36px; }
  .project-hero__stats { flex-direction: column; gap: 14px; }
  .project-hero__stat-number { font-size: 1.1rem; }
  .project-hero__stat-label { font-size: 0.62rem; }
  .project-hero__label { font-size: 0.55rem; padding: 5px 12px; }
  .project-features-grid { grid-template-columns: 1fr; gap: 14px; }
  .project-timeline { grid-template-columns: 1fr; gap: 20px; }
  .project-location__facts { grid-template-columns: 1fr; }
  .project-location__map { height: 240px; }
  .project-hero__title { font-size: 1.2rem; }
  .project-hero__subtitle { font-size: 0.82rem; }
  .project-plot-card__details { grid-template-columns: 1fr; }
  .project-plot-card { padding: 14px; }
  .project-plot-card__name { font-size: 0.95rem; }
  .project-plot-card__detail-label { font-size: 0.72rem; }
  .project-plot-card__detail-value { font-size: 0.9rem; }
  .project-banner-card__meta { flex-direction: column; gap: 8px; }
  .section-subtitle { font-size: 0.82rem; }

  /* Amenities 480 */
  .amenity-card { padding: 14px; }
  .amenity-card__icon { width: 36px; height: 36px; font-size: 1rem; }
  .amenity-card h4 { font-size: 0.85rem; }
  .amenity-card p { font-size: 0.8rem; }

  /* Transport 480 */
  .transport-strip { gap: 14px; margin-top: 24px; padding-top: 20px; }
  .transport-strip__item { gap: 10px; }
  .transport-strip__icon { width: 36px; height: 36px; min-width: 36px; font-size: 1rem; }
  .transport-strip__item strong { font-size: 0.8rem; }
  .transport-strip__item span { font-size: 0.78rem; }

  /* POI 480 */
  .poi-grid { grid-template-columns: 1fr; gap: 14px; }
  .poi-card__image { height: 160px; }

  /* Gallery 480 */
  .photo-gallery { grid-template-columns: 1fr; gap: 8px; }
  .photo-gallery__item--wide { grid-column: span 1; }
  .photo-gallery__item { height: 180px; }

  /* Comparison 480 */
  .comparison-card__header { padding: 16px; }
  .comparison-card__body { padding: 16px; }
  .comparison-card__price { font-size: 1.05rem; }
  .comparison-card__type { font-size: 0.92rem; }
  .comparison-card__list li { font-size: 0.88rem; padding: 5px 0; }
  .comparison-card__mortgage { font-size: 0.82rem; }
  .comparison-icon { width: 20px; height: 20px; font-size: 0.6rem; }
  .comparison-vs span { width: 34px; height: 34px; font-size: 0.7rem; margin: -17px auto; }

  /* Harmonogram 480 */
  .harmonogram-timeline { padding-left: 30px; }
  .harmonogram-step__marker { left: -30px; width: 18px; height: 18px; }
  .harmonogram-step h3 { font-size: 0.9rem; }
  .harmonogram-step p { font-size: 0.82rem; }
  .harmonogram-step { padding-bottom: 24px; }

  /* Highlights 480 */
  .project-highlight { padding: 12px; gap: 12px; }
  .project-highlight__icon { min-width: 32px; height: 32px; font-size: 1rem; }
  .project-highlight strong { font-size: 0.9rem; }
  .project-highlight p { font-size: 0.82rem; }

  /* Features 480 */
  .project-feature-card { padding: 16px; }
  .project-feature-card__icon { width: 40px; height: 40px; font-size: 1rem; margin-bottom: 12px; }
  .project-feature-card h3 { font-size: 0.85rem; margin-bottom: 6px; }
  .project-feature-card p { font-size: 0.78rem; }

  /* POI text 480 */
  .poi-card__body { padding: 12px; }
  .poi-card h3 { font-size: 0.85rem; }
  .poi-card p { font-size: 0.78rem; }

  /* Lead magnet 480 */
  .lead-magnet { padding: 20px 14px; gap: 16px; }
  .lead-magnet__icon { width: 44px; height: 44px; min-width: 44px; font-size: 1.2rem; }
  .lead-magnet__content h3 { font-size: 0.92rem; }
  .lead-magnet__content p { font-size: 0.82rem; }
  .lead-magnet__input { min-width: 100%; width: 100%; }

  /* Sticky CTA 480 */
  .sticky-cta { padding: 10px 12px; }
  .sticky-cta__text { font-size: 0.8rem; }
  .sticky-cta__btn { font-size: 0.78rem; padding: 10px 22px; }

  /* Contact form & section 480 */
  .cta__form { padding: 18px 12px; }
  .cta-form-heading { font-size: 0.92rem; margin-bottom: 16px; }
  .cta__form .form-group input,
  .cta__form .form-group select,
  .cta__form .form-group textarea { font-size: 0.88rem; padding: 10px 12px; }
  .cta-section .btn { font-size: 0.82rem; padding: 12px 18px; }
  .cta-heading { font-size: 1.1rem !important; }
  .cta-desc { font-size: 0.82rem !important; max-width: 100% !important; }
  .cta-contact-list { margin-top: 24px; }
  .cta-contact-item { gap: 12px; margin-bottom: 16px; }
  .cta-contact-icon { width: 38px; height: 38px; min-width: 38px; font-size: 1rem; }
  .cta-contact-label { font-size: 0.58rem; }
  .cta-contact-value { font-size: 0.88rem; }
  .cta-contact-value--muted { font-size: 0.78rem; }
  .cta-response-note { font-size: 0.78rem; }

  /* Masterplan 480 */
  .project-masterplan__image { max-height: 400px; object-fit: contain; }

  /* Hero CTA button 480 */
  .project-hero__cta { padding: 12px 24px; font-size: 0.8rem; }
}

/* ===== SOLD / REFERENCES SECTION ===== */

/* References section on nabidky page */
.references-section {
  padding: 80px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(26, 43, 66, 0.08);
}

/* Sold property card */
.property-card--sold .property-card__image {
  position: relative;
}

.property-card--sold .property-card__sold-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 43, 66, 0.35);
  z-index: 1;
  pointer-events: none;
}

.property-card__sold-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  z-index: 2;
  border: 1px solid var(--gold);
}

.property-card--sold:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.property-card__sold-status {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Detail page sold banner */
.property-sold-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--gold);
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(196, 167, 125, 0.3);
}

.property-sold-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Sidebar sold box */
.property-sidebar-box--sold {
  background: var(--navy) !important;
  border: 1px solid rgba(196, 167, 125, 0.3);
}

.sidebar-sold-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sidebar-sold-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.property-sidebar-box--sold p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive: references section */
@media (max-width: 767px) {
  .references-section {
    padding: 50px 0;
  }

  .property-sold-banner {
    font-size: 0.75rem;
    padding: 10px 14px;
    letter-spacing: 1px;
  }

  .property-sold-banner__icon {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .property-card__sold-badge {
    font-size: 0.58rem;
    padding: 4px 10px;
    top: 10px;
    right: 10px;
  }

  .property-card__sold-status {
    font-size: 0.72rem;
  }

  .sidebar-sold-badge,
  .sidebar-reserved-badge {
    font-size: 0.9rem;
  }
}

/* ========================================
   RESERVED PROPERTY STYLES
   ======================================== */

/* Card badge */
.property-card__reserved-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  z-index: 2;
  border: 1px solid var(--gold);
}

/* Detail page reserved banner */
.property-reserved-banner {
  background: var(--navy);
  color: var(--gold);
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid rgba(196, 167, 125, 0.3);
}

/* Sidebar reserved box */
.property-sidebar-box--reserved {
  background: var(--navy) !important;
  border: 1px solid rgba(196, 167, 125, 0.3);
}

.sidebar-reserved-badge {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.property-sidebar-box--reserved p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive: reserved */
@media (max-width: 767px) {
  .property-reserved-banner {
    font-size: 0.75rem;
    padding: 10px 14px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .property-card__reserved-badge {
    font-size: 0.58rem;
    padding: 4px 10px;
    top: 10px;
    right: 10px;
  }
}

/* ===== EXPANDABLE PROPERTY DESCRIPTION (mobile) ===== */
.description-wrapper {
  position: relative;
}

/* Fade overlay and toggle button are hidden on desktop */
.description-fade {
  display: none;
}

.description-toggle {
  display: none;
}

@media (max-width: 767px) {
  /* Collapsed state — JS adds this class when content overflows */
  .description-wrapper.collapsible {
    max-height: 220px;
    overflow: hidden;
  }

  /* Gradient fade sitting at the bottom of the clipped wrapper */
  .description-wrapper.collapsible .description-fade {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
  }

  /* Expanded state — remove clipping */
  .description-wrapper.expanded {
    max-height: none;
    overflow: visible;
  }

  .description-wrapper.expanded .description-fade {
    display: none;
  }

  /* Toggle button — shown only when JS detects overflow */
  .description-toggle {
    display: none;
    margin-top: 10px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: inherit;
  }

  .description-toggle.visible {
    display: inline-block;
  }
}
