:root {
  --navy: #111b3a;
  --navy2: #17264d;
  --champagne: #e8d8b8;
  --gold: #c8a85a;
  --soft: #f6f7f9;
  --logistics: #1f5f8b;
  --text: #202435;
  --muted: #6d7280;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 22px 60px rgba(17, 27, 58, .13);
  --lk-page-hero-min-height: 760px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65
}

a {
  color: inherit
}

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

.lk-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto
}

.lk-narrow {
  width: min(820px, calc(100% - 40px))
}

.lk-skip-link {
  position: absolute;
  left: -999px;
  top: auto
}

.lk-skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.lk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 27, 58, .08)
}

.lk-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.lk-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none
}

.lk-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700
}

.lk-brand strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  display: block;
  color: var(--navy)
}

.lk-brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem
}

.lk-nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px
}

.lk-primary-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: .94rem
}

.lk-primary-nav a,
.lk-language-switcher a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 650
}

.lk-primary-nav a:hover,
.lk-language-switcher a:hover {
  color: var(--gold)
}

.lk-language-switcher {
  display: flex;
  gap: 8px;
  align-items: center
}

.lk-language-switcher a {
  border: 1px solid rgba(17, 27, 58, .13);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: .78rem
}

.lk-nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px
}

.lk-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 7px;
  border-radius: 999px
}

.lk-hero,
.lk-subhero {
  background: radial-gradient(circle at 78% 20%, rgba(200, 168, 90, .28), transparent 30%), linear-gradient(135deg, var(--navy), #0d142d);
  color: #fff
}

.lk-hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 54px
}

.lk-eyebrow {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800
}

.lk-hero h1,
.lk-subhero h1,
.lk-section-heading h2,
.lk-final-cta h2,
.lk-page-content h1 {
  font-family: var(--serif);
  line-height: 1.08;
  margin: 0 0 20px;
  color: inherit
}

.lk-hero h1 {
  font-size: clamp(2.4rem, 5vw, 5.1rem)
}

.lk-lead,
.lk-subhero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .82);
  max-width: 760px
}

.lk-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px
}

.lk-actions-column {
  flex-direction: column
}

.lk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease
}

.lk-btn-primary {
  background: var(--gold);
  color: var(--navy)
}

.lk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 168, 90, .28)
}

.lk-btn-light {
  background: #fff;
  color: var(--navy)
}

.lk-btn-outline {
  border-color: rgba(17, 27, 58, .18);
  color: var(--navy);
  background: #fff
}

.lk-hero-visual {
  min-height: 420px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
  display: grid;
  place-items: center
}

.lk-hero-card {
  width: min(360px, 80%);
  aspect-ratio: 1;
  border-radius: 34px;
  background: linear-gradient(160deg, #fff, var(--champagne));
  color: var(--navy);
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.lk-hero-card strong {
  font: 700 3rem var(--serif)
}

.lk-section {
  padding: 86px 0
}

.lk-section-soft {
  background: var(--soft)
}

.lk-section-heading {
  margin-bottom: 34px
}

.lk-between {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px
}

.lk-division-grid,
.lk-process-grid,
.lk-property-detail-grid,
.lk-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.lk-division-card,
.lk-info-card,
.lk-testimonial,
.lk-process,
.lk-property-card,
.lk-contact-panel,
.lk-property-search,
.lk-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid rgba(17, 27, 58, .06)
}

.lk-division-card {
  min-height: 520px;
  position: relative;
  overflow: hidden
}

.lk-division-card h2,
.lk-info-card h3,
.lk-process h3,
.lk-property-card h3,
.lk-contact-panel h2 {
  font-family: var(--serif);
  color: var(--navy)
}

.lk-division-card:before {
  content: '';
  position: absolute;
  inset: auto -20% -38% 40%;
  height: 260px;
  border-radius: 50%;
  background: rgba(31, 95, 139, .12)
}

.lk-division-property:before {
  background: rgba(200, 168, 90, .2)
}

.lk-icon-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 95, 139, .12);
  color: var(--logistics);
  font-weight: 800;
  font-size: .8rem
}

.lk-card-grid {
  display: grid;
  gap: 22px
}

.lk-card-grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.lk-property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px
}

.lk-property-card {
  padding: 0;
  overflow: hidden
}

.lk-property-image {
  display: block;
  position: relative;
  aspect-ratio: 1.32;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--champagne));
  text-decoration: none
}

.lk-property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease
}

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

.lk-property-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .8rem;
  font-weight: 800
}

.lk-property-body {
  padding: 22px
}

.lk-property-id {
  font-size: .78rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase
}

.lk-property-location {
  color: var(--muted);
  font-size: .92rem
}

.lk-property-price {
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 900
}

.lk-property-stats,
.lk-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0
}

.lk-property-stats div,
.lk-detail-facts div {
  background: var(--soft);
  border-radius: 14px;
  padding: 10px
}

.lk-property-stats dt,
.lk-detail-facts dt {
  font-size: .75rem;
  color: var(--muted)
}

.lk-property-stats dd,
.lk-detail-facts dd {
  margin: 0;
  font-weight: 800
}

.lk-card-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 900
}

.lk-process ol {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 0
}

.lk-process li {
  padding: 13px 0 13px 42px;
  border-bottom: 1px solid rgba(17, 27, 58, .08);
  position: relative
}

.lk-process li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 11px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--champagne);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 900
}

.lk-testimonial p {
  font-size: 1.05rem
}

.lk-testimonial cite {
  color: var(--muted);
  font-weight: 800
}

.lk-final-cta {
  padding: 78px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff
}

.lk-final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px
}

.lk-final-cta h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  max-width: 760px
}

.lk-subhero {
  padding: 110px 0 86px
}

.lk-subhero h1 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  max-width: 980px
}

.lk-region-grid,
.lk-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.lk-region-grid span,
.lk-pill-list span {
  padding: 13px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .08);
  font-weight: 800
}

.lk-form-layout {
  align-items: start
}

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

.lk-form label,
.lk-property-search label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 800;
  color: var(--navy)
}

.lk-form input,
.lk-form textarea,
.lk-property-search input,
.lk-property-search select {
  width: 100%;
  border: 1px solid rgba(17, 27, 58, .16);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fff
}

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

.lk-check {
  flex-direction: row !important;
  align-items: flex-start
}

.lk-check input {
  width: auto;
  margin-top: 6px
}

.lk-property-search {
  margin-bottom: 28px
}

.lk-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end
}

.lk-filter-grid button,
.lk-filter-grid .lk-btn {
  width: 100%
}

.lk-filter-actions {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 220px));
  gap: 14px;
  justify-content: end;
  align-items: end
}

.lk-filter-actions .lk-btn {
  min-height: 50px;
  padding: 13px 20px;
  font-family: inherit;
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center
}

.lk-filter-actions .lk-property-search-reset {
  background: #fff;
  border-color: rgba(17, 27, 58, .14);
  color: rgba(17, 27, 58, .82);
  box-shadow: none
}

.lk-filter-actions .lk-property-search-reset:hover {
  border-color: rgba(200, 168, 90, .34);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(17, 27, 58, .06)
}

.lk-price-filter {
  --lk-price-from: 0%;
  --lk-price-to: 100%;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 8px 0 4px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(200, 168, 90, .16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 251, 244, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 16px 42px rgba(120, 86, 32, .07)
}

.lk-price-filter__title {
  grid-column: 1/-1;
  padding: 0;
  margin: 0 0 2px;
  color: var(--navy);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.25
}

.lk-price-filter__summary {
  grid-column: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900
}

.lk-price-filter__slider {
  grid-column: 1;
  position: relative;
  min-height: 42px;
  padding-top: 18px
}

.lk-price-filter__slider::before,
.lk-price-filter__slider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 26px;
  height: 8px;
  border-radius: 999px;
  pointer-events: none
}

.lk-price-filter__slider::before {
  background: #e8e7ea
}

.lk-price-filter__slider::after {
  left: var(--lk-price-from);
  right: calc(100% - var(--lk-price-to));
  background: linear-gradient(90deg, #c59a35, #d7b864);
  box-shadow: 0 6px 18px rgba(197, 154, 53, .24)
}

.lk-price-filter__slider input[type="range"] {
  position: absolute;
  left: 0;
  top: 9px;
  z-index: 2;
  width: 100%;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none
}

.lk-price-filter__slider input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent
}

.lk-price-filter__slider input[type="range"]::-moz-range-track {
  height: 8px;
  background: transparent
}

.lk-price-filter__slider input[type="range"]::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  margin-top: -10px;
  border: 2px solid #c59a35;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 27, 58, .16);
  cursor: grab;
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none
}

.lk-price-filter__slider input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 2px solid #c59a35;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 27, 58, .16);
  cursor: grab;
  pointer-events: auto
}

.lk-price-filter__slider input[type="range"]:focus-visible::-webkit-slider-thumb {
  outline: 3px solid rgba(197, 154, 53, .38);
  outline-offset: 3px
}

.lk-price-filter__slider input[type="range"]:focus-visible::-moz-range-thumb {
  outline: 3px solid rgba(197, 154, 53, .38);
  outline-offset: 3px
}

.lk-price-filter__ticks {
  grid-column: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.3
}

.lk-property-detail {
  padding: 42px 0 86px;
  background: var(--soft)
}

.lk-breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 24px
}

.lk-property-detail-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start
}

.lk-property-main {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px
}

.lk-gallery-main {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--champagne))
}

.lk-gallery-main img {
  width: 100%;
  height: auto
}

.lk-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px
}

.lk-gallery-thumbs img {
  width: 88px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px
}

.lk-detail-head h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.6rem);
  color: var(--navy);
  line-height: 1.08
}

.lk-detail-facts {
  grid-template-columns: repeat(3, 1fr)
}

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

.lk-benefits li {
  background: var(--soft);
  border-radius: 14px;
  padding: 12px 14px
}

.lk-contact-panel {
  position: sticky;
  top: 110px
}

.lk-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--champagne));
  color: #fff;
  font-family: var(--serif);
  font-size: 1.4rem;
  text-align: center;
  padding: 20px
}

.lk-empty {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px
}

.lk-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px
}

.lk-pagination a,
.lk-pagination span {
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
  text-decoration: none
}

.lk-mobile-cta {
  display: none
}

.lk-page-content {
  font-size: 1.05rem
}

.lk-page-content h1,
.lk-page-content h2,
.lk-page-content h3 {
  font-family: var(--serif);
  color: var(--navy)
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px
}

@media(max-width:1200px) {
  .lk-container {
    width: min(1080px, calc(100% - 36px))
  }

  .lk-primary-nav {
    gap: 12px;
    font-size: .88rem
  }
}

@media(max-width:992px) {
  .lk-nav-toggle {
    display: block
  }

  .lk-nav-wrap {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 20px;
    display: none;
    align-items: flex-start
  }

  .lk-nav-wrap.is-open {
    display: block
  }

  .lk-primary-nav {
    flex-direction: column;
    align-items: flex-start
  }

  .lk-language-switcher {
    margin-top: 14px
  }

  .lk-hero-grid,
  .lk-division-grid,
  .lk-process-grid,
  .lk-form-layout,
  .lk-property-detail-grid {
    grid-template-columns: 1fr
  }

  .lk-hero-grid {
    min-height: auto;
    padding: 96px 0
  }

  .lk-property-grid,
  .lk-card-grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .lk-filter-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .lk-filter-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch
  }

  .lk-price-filter__summary,
  .lk-price-filter__slider,
  .lk-price-filter__ticks {
    grid-column: 1;
    grid-row: auto
  }

  .lk-contact-panel {
    position: static
  }

  .lk-final-cta-inner {
    display: block
  }
}

@media(max-width:768px) {
  .lk-section {
    padding: 64px 0
  }

  .lk-header-inner {
    min-height: 72px
  }

  .lk-brand small {
    display: none
  }

  .lk-hero h1 {
    font-size: 2.45rem
  }

  .lk-hero-visual {
    min-height: 260px
  }

  .lk-property-grid,
  .lk-card-grid-3,
  .lk-detail-facts,
  .lk-benefits {
    grid-template-columns: 1fr
  }

  .lk-filter-grid,
  .lk-form {
    grid-template-columns: 1fr
  }

  .lk-price-filter {
    padding: 16px;
    border-radius: 18px
  }

  .lk-filter-actions {
    gap: 10px
  }

  .lk-filter-actions .lk-btn {
    min-height: 48px;
    padding: 12px 10px;
    font-size: .88rem
  }

  .lk-price-filter__summary {
    flex-direction: column;
    gap: 4px
  }

  .lk-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: #fff;
    border-top: 1px solid rgba(17, 27, 58, .1);
    box-shadow: 0 -10px 30px rgba(17, 27, 58, .1);
    display: grid;
    grid-template-columns: repeat(3, 1fr)
  }

  .lk-mobile-cta a {
    text-align: center;
    padding: 12px 6px;
    text-decoration: none;
    font-weight: 900;
    color: var(--navy);
    font-size: .86rem
  }

  body {
    padding-bottom: 52px
  }
}

@media(max-width:576px) {
  .lk-container {
    width: calc(100% - 28px)
  }

  .lk-actions {
    flex-direction: column
  }

  .lk-btn {
    width: 100%
  }

  .lk-division-card,
  .lk-info-card,
  .lk-testimonial,
  .lk-process,
  .lk-contact-panel,
  .lk-property-search,
  .lk-form,
  .lk-property-main {
    border-radius: 18px;
    padding: 22px
  }

  .lk-property-card {
    border-radius: 18px;
    padding: 0
  }

  .lk-subhero {
    padding: 78px 0 62px
  }
}

/* Reference-style homepage hero */
.lk-header {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 2px 18px rgba(17, 27, 58, .08)
}

.lk-header-inner {
  min-height: 64px
}

.lk-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px
}

.lk-brand small {
  font-size: .7rem
}

.lk-primary-nav {
  gap: 24px;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .04em
}

.lk-primary-nav a {
  position: relative
}

.lk-primary-nav a:first-child:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--navy)
}

.lk-header-promise {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 8px;
  align-items: center;
  color: var(--navy);
  font-size: .76rem;
  text-transform: uppercase;
  line-height: 1.08
}

.lk-header-promise span {
  grid-row: 1/3;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(17, 27, 58, .14);
  display: grid;
  place-items: center;
  color: var(--gold)
}

.lk-header-promise small {
  font-weight: 800;
  color: var(--navy)
}

.lk-idea-hero {
  background: #eef0f3;
  padding: 18px 0 34px;
  color: #111b3a
}

.lk-idea-shell {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 27, 58, .16);
  padding: 0
}

.lk-idea-title {
  position: absolute;
  z-index: 5;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 90%);
  text-align: center;
  color: #10162b;
  text-shadow: 0 2px 14px rgba(255, 255, 255, .7)
}

.lk-idea-title h1 {
  margin: 0 0 3px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
  line-height: 1
}

.lk-idea-title p {
  margin: 0;
  font-weight: 700;
  font-size: clamp(.86rem, 1.4vw, 1.08rem)
}

.lk-idea-kicker {
  margin-bottom: 7px !important;
  color: #5c6478;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem !important
}

.lk-idea-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 535px
}

.lk-idea-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 46px 96px;
  overflow: hidden
}

.lk-idea-panel:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0
}

.lk-idea-panel-realty {
  background: linear-gradient(115deg, rgba(255, 255, 255, .86), rgba(245, 238, 222, .74)), radial-gradient(circle at 24% 62%, rgba(255, 210, 120, .55), transparent 21%), linear-gradient(145deg, #e8f4ff 0%, #fff2d8 46%, #d7ebee 100%)
}

.lk-idea-panel-realty:before {
  background: radial-gradient(ellipse at 11% 82%, rgba(24, 79, 115, .18) 0 10%, transparent 11%), radial-gradient(ellipse at 20% 88%, rgba(24, 79, 115, .16) 0 8%, transparent 9%), linear-gradient(170deg, transparent 0 54%, rgba(255, 255, 255, .58) 55% 100%)
}

.lk-idea-panel-logistics {
  color: #fff;
  background-image: linear-gradient(90deg, rgba(10, 22, 43, .86), rgba(10, 22, 43, .5)), var(--lk-logistics-bg);
  background-size: cover;
  background-position: center
}

.lk-idea-panel-logistics:before {
  background: linear-gradient(180deg, rgba(10, 22, 43, .25), rgba(10, 22, 43, .7))
}

.lk-idea-panel-content {
  position: relative;
  z-index: 1;
  max-width: 455px
}

.lk-idea-panel-realty .lk-idea-panel-content {
  text-align: center;
  margin-top: 40px
}

.lk-idea-panel-logistics .lk-idea-panel-content {
  margin-top: 48px
}

.lk-idea-panel h2 {
  margin: 0 0 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .015em;
  color: inherit
}

.lk-idea-panel h2 strong {
  font-weight: 900
}

.lk-idea-panel ul {
  margin: 0 0 24px;
  padding-left: 1.25em;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 650
}

.lk-idea-panel-realty ul {
  display: inline-block;
  text-align: left
}

.lk-btn-sunset {
  background: linear-gradient(90deg, #a582ba, #e5c879);
  color: #fff;
  box-shadow: 0 12px 30px rgba(126, 87, 135, .24)
}

.lk-btn-ocean {
  background: linear-gradient(90deg, #115b86, #15a4d8);
  color: #fff;
  box-shadow: 0 12px 30px rgba(17, 91, 134, .28)
}

.lk-idea-bridge {
  text-align: center;
  padding: 22px 20px 28px;
  background: rgba(255, 255, 255, .88);
  border-top: 1px solid rgba(17, 27, 58, .08)
}

.lk-idea-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 2rem;
  line-height: 1;
  color: #435166;
  margin-bottom: 8px
}

.lk-idea-bridge h2 {
  margin: 0 0 6px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-transform: uppercase;
  font-size: 1.18rem;
  letter-spacing: .02em;
  color: var(--navy)
}

.lk-idea-bridge p {
  margin: 0 auto;
  max-width: 760px;
  color: #3f4657;
  font-weight: 600;
  line-height: 1.45
}

.lk-idea-hero+.lk-section {
  padding-top: 72px
}

@media(max-width:1120px) {
  .lk-header-promise {
    display: none
  }

  .lk-primary-nav {
    gap: 14px
  }

  .lk-idea-panel {
    padding-left: 28px;
    padding-right: 28px
  }

  .lk-idea-panel h2 {
    font-size: 1.75rem
  }
}

@media(max-width:992px) {
  .lk-nav-wrap {
    top: 68px
  }

  .lk-primary-nav {
    text-transform: none;
    letter-spacing: 0
  }

  .lk-primary-nav a:first-child:after {
    display: none
  }

  .lk-idea-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    padding: 34px 20px 10px
  }

  .lk-idea-panels {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .lk-idea-panel {
    min-height: 430px;
    padding: 70px 28px
  }

  .lk-idea-panel-realty .lk-idea-panel-content,
  .lk-idea-panel-logistics .lk-idea-panel-content {
    margin-top: 0
  }

  .lk-idea-panel-logistics .lk-idea-panel-content {
    text-align: center
  }

  .lk-idea-panel-logistics ul {
    display: inline-block;
    text-align: left
  }
}

@media(max-width:576px) {
  .lk-idea-hero {
    padding-top: 10px
  }

  .lk-idea-shell {
    border-radius: 0 0 16px 16px
  }

  .lk-idea-title h1 {
    font-size: 2.15rem
  }

  .lk-idea-panel {
    min-height: 390px;
    padding: 52px 18px
  }

  .lk-idea-panel h2 {
    font-size: 1.42rem
  }

  .lk-idea-panel ul {
    font-size: .95rem
  }

  .lk-idea-bridge h2 {
    font-size: .98rem
  }

  .lk-idea-icons {
    font-size: 1.45rem
  }
}

/* Header logo + flag language switcher */
.lk-brand-logo {
  gap: 0;
  flex: 0 0 auto
}

.lk-brand-logo img {
  width: 74px;
  height: auto;
  display: block
}

.lk-language-switcher {
  gap: 7px
}

.lk-language-switcher .lk-flag-link,
.lk-language-switcher a {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  padding: 0 6px;
  font-size: 1.18rem;
  line-height: 1;
  background: #fff
}

.lk-language-switcher img {
  width: 22px;
  height: auto;
  display: block;
  border-radius: 2px
}

.lk-nav-wrap {
  gap: 20px
}

.lk-header-promise {
  display: none !important
}

@media(max-width:768px) {
  .lk-brand-logo img {
    width: 60px
  }

  .lk-language-switcher .lk-flag-link,
  .lk-language-switcher a {
    min-width: 32px;
    height: 32px
  }
}

/* Full editable homepage matching the provided reference */
.lk-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid rgba(17, 27, 58, .08);
  box-shadow: none
}

.lk-header-inner {
  min-height: 76px;
  width: min(1510px, calc(100% - 34px))
}

.lk-brand-logo img {
  width: 78px
}

.lk-nav-wrap {
  gap: 24px
}

.lk-primary-nav {
  gap: 34px;
  font-size: .84rem;
  letter-spacing: .055em;
  text-transform: uppercase
}

.lk-primary-nav a {
  font-weight: 900;
  color: #07162d
}

.lk-primary-nav a:first-child:after {
  bottom: -17px;
  background: #c4a568;
  height: 3px
}

.lk-language-switcher {
  gap: 13px
}

.lk-language-switcher .lk-flag-link,
.lk-language-switcher a {
  border: 0;
  background: transparent;
  box-shadow: none;
  min-width: auto;
  height: auto;
  font-size: 1.4rem;
  padding: 0
}

.lk-language-switcher img {
  width: 27px;
  border-radius: 999px
}

.lk-main {
  background: #fff
}

.lk-home {
  background: #fff;
  color: #fff
}

.lk-home-hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: #0b1e39
}

.lk-home-title {
  position: absolute;
  z-index: 4;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, 92%);
  text-align: center;
  text-shadow: 0 5px 22px rgba(3, 12, 26, .58)
}

.lk-home-kicker {
  margin: 0 0 20px;
  color: #c9aa62;
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .92rem;
  font-weight: 800
}

.lk-home-title h1 {
  margin: 0 0 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.1rem, 5.25vw, 5.45rem);
  font-weight: 500;
  letter-spacing: .065em;
  line-height: .95;
  text-transform: uppercase;
  color: #fff
}

.lk-home-title p:last-child {
  margin: 0 auto;
  max-width: 560px;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 600
}

.lk-home-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 670px
}

.lk-home-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 250px 7.8vw 64px;
  background-image: var(--lk-home-bg);
  background-size: cover;
  background-position: center
}

.lk-home-panel:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1
}

.lk-home-panel-realty:before {
  background: linear-gradient(90deg, rgba(5, 20, 37, .46), rgba(6, 26, 47, .26)), linear-gradient(0deg, rgba(2, 14, 30, .45), rgba(2, 14, 30, .08) 45%, rgba(2, 14, 30, .52))
}

.lk-home-panel-logistics:before {
  background: linear-gradient(90deg, rgba(9, 28, 58, .82), rgba(9, 28, 58, .35)), linear-gradient(0deg, rgba(2, 13, 28, .58), rgba(2, 13, 28, .1) 45%, rgba(2, 13, 28, .54))
}

.lk-home-panel-content {
  max-width: 520px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .4)
}

.lk-home-panel-realty .lk-home-panel-content {
  margin-left: auto
}

.lk-home-panel-kicker {
  margin: 0 0 8px;
  color: #c4a568;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
  font-size: .92rem
}

.lk-home-panel-kicker:after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 14px;
  background: #c4a568
}

.lk-home-panel-logistics .lk-home-panel-kicker {
  color: #2f8fd3
}

.lk-home-panel-logistics .lk-home-panel-kicker:after {
  background: #2f8fd3
}

.lk-home-panel h2 {
  margin: 0 0 22px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.05;
  font-weight: 600;
  font-size: clamp(2rem, 3.35vw, 3.35rem)
}

.lk-home-panel ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 13px
}

.lk-home-panel li {
  position: relative;
  padding-left: 34px;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.35
}

.lk-home-panel li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid currentColor;
  color: #c8aa62;
  display: grid;
  place-items: center;
  font-size: .72rem;
  line-height: 1
}

.lk-home-panel-logistics li:before {
  color: #2f8fd3
}

.lk-btn-gold,
.lk-btn-blue {
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 999px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .86rem;
  font-weight: 950
}

.lk-btn-gold {
  background: linear-gradient(180deg, #d8bb72, #b89243);
  box-shadow: 0 14px 32px rgba(177, 130, 47, .35)
}

.lk-btn-blue {
  background: linear-gradient(180deg, #3d9be0, #176cac);
  box-shadow: 0 14px 32px rgba(23, 108, 172, .35)
}

.lk-btn-gold:after,
.lk-btn-blue:after {
  content: '→';
  margin-left: 12px
}

.lk-home-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f7f7f8;
  color: #172033;
  padding: 34px min(7vw, 96px);
  box-shadow: inset 0 1px rgba(255, 255, 255, .7)
}

.lk-home-proof-item {
  text-align: center;
  padding: 0 34px;
  border-right: 1px solid rgba(17, 27, 58, .14)
}

.lk-home-proof-item:last-child {
  border-right: 0
}

.lk-home-proof-item span {
  display: block;
  margin-bottom: 13px;
  color: #b69b59;
  font-size: 2.35rem;
  line-height: 1
}

.lk-home-proof-item h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: .92rem;
  color: #172033;
  font-weight: 950
}

.lk-home-proof-item p {
  margin: 0 auto;
  max-width: 230px;
  color: #4d5360;
  font-size: .92rem;
  line-height: 1.35;
  font-weight: 600
}

.lk-home-bottom {
  background: #08284b;
  color: #fff;
  text-align: center;
  padding: 30px 20px 34px
}

.lk-home-bottom h2 {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: .045em;
  font-weight: 500;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  color: #fff
}

.lk-home-bottom p {
  margin: 0 auto;
  max-width: 850px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff
}

.lk-home+.lk-final-cta {
  display: none
}

@media(max-width:1180px) {
  .lk-primary-nav {
    gap: 18px;
    font-size: .76rem
  }

  .lk-home-panel {
    padding-left: 5vw;
    padding-right: 5vw
  }

  .lk-home-proof {
    padding-left: 24px;
    padding-right: 24px
  }

  .lk-home-proof-item {
    padding: 0 18px
  }
}

@media(max-width:992px) {
  .lk-header-inner {
    width: min(1080px, calc(100% - 36px))
  }

  .lk-nav-wrap {
    top: 72px
  }

  .lk-primary-nav {
    gap: 14px;
    text-transform: none;
    letter-spacing: 0
  }

  .lk-primary-nav a:first-child:after {
    display: none
  }

  .lk-language-switcher {
    margin-top: 16px
  }

  .lk-home-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    padding: 38px 20px 30px;
    background: linear-gradient(180deg, #0a294d, #102e53)
  }

  .lk-home-hero {
    min-height: 0
  }

  .lk-home-panels {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .lk-home-panel {
    min-height: 520px;
    padding: 120px 32px 76px
  }

  .lk-home-panel-realty .lk-home-panel-content {
    margin-left: 0
  }

  .lk-home-proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
  }

  .lk-home-proof-item {
    border-right: 0
  }

  .lk-home-bottom {
    padding: 34px 18px
  }
}

@media(max-width:620px) {
  .lk-brand-logo img {
    width: 62px
  }

  .lk-home-title h1 {
    font-size: 2.75rem
  }

  .lk-home-title p:last-child {
    font-size: 1rem
  }

  .lk-home-kicker {
    font-size: .75rem;
    letter-spacing: .22em
  }

  .lk-home-panel {
    min-height: 470px;
    padding: 82px 22px 72px
  }

  .lk-home-panel h2 {
    font-size: 2rem
  }

  .lk-home-panel li {
    font-size: .95rem
  }

  .lk-home-proof {
    grid-template-columns: 1fr;
    padding: 30px 20px
  }

  .lk-home-proof-item {
    padding: 0
  }

  .lk-home-bottom h2 {
    font-size: 1.25rem
  }
}

/* Homepage references from original luciekaplanova.cz */
.lk-references {
  background: #f7f7f8;
  color: #172033;
  padding: 76px 0 86px
}

.lk-references-head {
  text-align: center;
  margin: 0 auto 38px;
  max-width: 860px
}

.lk-references-kicker {
  margin: 0 0 10px;
  color: #b59652;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
  font-size: .82rem
}

.lk-references-head h2 {
  margin: 0 0 12px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #08284b;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.08
}

.lk-references-head p {
  margin: 0;
  color: #596071;
  font-weight: 650
}

.lk-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.lk-reference-card {
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(17, 27, 58, .1);
  display: flex;
  flex-direction: column;
  min-height: 390px
}

.lk-reference-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: #b59652
}

.lk-reference-rating strong {
  font-size: 1.38rem;
  color: #08284b
}

.lk-reference-rating span {
  letter-spacing: .08em;
  font-size: .92rem
}

.lk-reference-card h3 {
  margin: 0 0 14px;
  color: #08284b;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  line-height: 1.15
}

.lk-reference-card p {
  margin: 0;
  color: #343b4b;
  line-height: 1.62;
  font-weight: 560
}

.lk-reference-card cite {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: #08284b;
  font-style: normal;
  font-weight: 900
}

.lk-references-action {
  text-align: center;
  margin-top: 34px
}

.lk-btn-reference {
  background: #fff;
  border-color: rgba(8, 40, 75, .2);
  color: #08284b;
  text-transform: uppercase;
  letter-spacing: .06em
}

.lk-btn-reference:hover {
  background: #08284b;
  color: #fff
}

@media(max-width:992px) {
  .lk-reference-grid {
    grid-template-columns: 1fr
  }

  .lk-reference-card {
    min-height: 0
  }

  .lk-references {
    padding: 58px 0
  }
}

/* Icons + balanced division titles */
.lk-home-panel-content {
  width: min(520px, 100%)
}

.lk-home-panel h2 {
  min-height: 2.12em
}

.lk-home-panel-realty .lk-home-panel-content,
.lk-home-panel-logistics .lk-home-panel-content {
  margin-left: auto;
  margin-right: auto
}

.lk-home-proof-item img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 13px;
  filter: none
}

.lk-home-proof-item span {
  display: none
}

.lk-reference-grid {
  grid-template-columns: repeat(3, 1fr)
}

@media(max-width:992px) {
  .lk-home-panel h2 {
    min-height: 0
  }

  .lk-reference-grid {
    grid-template-columns: 1fr
  }
}

/* Reference cards as property/post cards + strict desktop hero rhythm */
.lk-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px
}

.lk-reference-card {
  padding: 0;
  overflow: hidden;
  min-height: 0
}

.lk-reference-image {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #08284b, #c8a85a)
}

.lk-reference-image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 20%, rgba(255, 255, 255, .28), transparent 28%), linear-gradient(180deg, rgba(8, 40, 75, .1), rgba(8, 40, 75, .45))
}

.lk-reference-mark {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.55rem;
  letter-spacing: .14em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .25)
}

.lk-reference-body {
  display: flex;
  flex-direction: column;
  min-height: 360px
}

.lk-reference-body h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 10px
}

.lk-reference-text {
  margin: 8px 0 0;
  color: #343b4b;
  line-height: 1.58;
  font-weight: 560
}

.lk-reference-stats {
  margin-top: auto
}

.lk-reference-stats dd {
  font-size: .9rem
}

.lk-reference-body .lk-card-link {
  margin-top: 0
}

.lk-references .lk-container {
  width: min(1180px, calc(100% - 40px))
}

@media(min-width:993px) {
  .lk-home-panels {
    align-items: stretch
  }

  .lk-home-panel {
    display: grid;
    align-items: stretch;
    justify-items: center;
    padding-top: 250px;
    padding-bottom: 88px
  }

  .lk-home-panel-content {
    display: grid;
    grid-template-rows: auto var(--lk-division-title-space, 9.2rem) auto minmax(36px, 1fr) auto;
    align-content: stretch;
    width: min(520px, 100%);
    max-width: 520px;
    height: 100%;
    margin: 0 auto !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .4)
  }

  .lk-home-panel-kicker {
    grid-row: 1;
    margin: 0
  }

  .lk-home-panel h2 {
    grid-row: 2;
    min-height: 0;
    margin: 18px 0 0;
    overflow: visible
  }

  .lk-home-panel ul {
    grid-row: 3;
    margin: 0 0 30px
  }

  .lk-home-panel .lk-btn {
    grid-row: 4;
    justify-self: start
  }

  .lk-home-panel-realty .lk-home-panel-content,
  .lk-home-panel-logistics .lk-home-panel-content {
    margin: 0 auto !important
  }
}

@media(max-width:992px) {
  .lk-reference-grid {
    grid-template-columns: 1fr
  }

  .lk-reference-body {
    min-height: 0
  }

  .lk-home-panel-content {
    display: block
  }

  .lk-home-panel h2 {
    min-height: 0;
    margin: 0 0 22px
  }

  .lk-home-panel ul {
    margin: 0 0 30px
  }
}

/* Restore original testimonial/reference card style */
.lk-references {
  background: #f7f7f8;
  color: #172033;
  padding: 76px 0 86px
}

.lk-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0
}

.lk-reference-card {
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(17, 27, 58, .1);
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: visible
}

.lk-reference-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: #b59652
}

.lk-reference-rating strong {
  font-size: 1.38rem;
  color: #08284b
}

.lk-reference-rating span {
  letter-spacing: .08em;
  font-size: .92rem
}

.lk-reference-card h3 {
  margin: 0 0 14px;
  color: #08284b;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  line-height: 1.15
}

.lk-reference-card p {
  margin: 0;
  color: #343b4b;
  line-height: 1.62;
  font-weight: 560
}

.lk-reference-card cite {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: #08284b;
  font-style: normal;
  font-weight: 900
}

/* Fix split hero vertical rhythm without overlap */
@media(min-width:993px) {
  .lk-home-panel {
    padding-top: 250px
  }

  .lk-home-panel-content {
    grid-template-rows: auto 12.25rem auto minmax(36px, 1fr) auto
  }

  .lk-home-panel h2 {
    margin: 18px 0 0;
    font-size: clamp(1.9rem, 3vw, 3.05rem);
    line-height: 1.04
  }

  .lk-home-panel ul {
    grid-row: 3;
    margin: 0;
    align-self: start
  }

  .lk-home-panel .lk-btn {
    grid-row: 5;
    align-self: end
  }
}

@media(max-width:992px) {
  .lk-reference-grid {
    grid-template-columns: 1fr
  }

  .lk-reference-card {
    min-height: 0
  }

  .lk-home-panel-content {
    display: block
  }

  .lk-home-panel h2 {
    margin: 0 0 22px;
    font-size: clamp(2rem, 7vw, 2.8rem)
  }

  .lk-home-panel ul {
    margin: 0 0 30px
  }
}

/* Premium full-width dark footer */
.lk-footer {
  background: #07162d;
  color: #fff;
  margin: 0;
  width: 100%;
  overflow: hidden
}

.lk-footer a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: .2s ease
}

.lk-footer a:hover,
.lk-footer a:focus-visible {
  color: #c8a85a
}

.lk-footer-cta {
  background: radial-gradient(circle at 18% 0, rgba(200, 168, 90, .24), transparent 28%), linear-gradient(135deg, #07162d, #0d2d56);
  border-top: 1px solid rgba(200, 168, 90, .24);
  border-bottom: 1px solid rgba(200, 168, 90, .2)
}

.lk-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 58px 0
}

.lk-footer-eyebrow {
  margin: 0 0 10px;
  color: #c8a85a;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
  font-size: .78rem
}

.lk-footer-cta h2 {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  font-weight: 500
}

.lk-footer-cta p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
  font-weight: 650
}

.lk-footer-cta-button {
  background: linear-gradient(180deg, #d8bb72, #b89243);
  color: #07162d !important;
  box-shadow: 0 14px 34px rgba(200, 168, 90, .24);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap
}

.lk-footer-cta-button:hover {
  transform: translateY(-2px);
  color: #07162d !important
}

.lk-footer-main {
  background: #07162d
}

.lk-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 60px 0
}

.lk-footer-brand h2,
.lk-footer-col h3 {
  margin: 0 0 18px;
  color: #c8a85a;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600
}

.lk-footer-brand h2 {
  font-size: 2rem;
  color: #fff
}

.lk-footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
  max-width: 330px
}

.lk-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px
}

.lk-footer-col li {
  color: rgba(255, 255, 255, .78)
}

.lk-footer-col h3:after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  background: #c8a85a;
  margin-top: 12px
}

.lk-footer-contact {
  font-style: normal
}

.lk-footer-contact li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start
}

.lk-footer-contact span {
  color: #c8a85a
}

.lk-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #051125
}

.lk-footer-bottom-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.lk-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .62)
}

.lk-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center
}

.lk-footer-bottom a {
  font-size: .92rem;
  color: rgba(255, 255, 255, .68)
}

.lk-footer-bottom a[lang] {
  color: #c8a85a;
  font-weight: 900
}

@media(max-width:992px) {
  .lk-footer-cta-inner {
    display: block
  }

  .lk-footer-cta-button {
    margin-top: 24px
  }

  .lk-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px
  }

  .lk-footer-bottom-inner {
    display: block;
    padding: 18px 0
  }

  .lk-footer-bottom nav {
    margin-top: 10px
  }
}

@media(max-width:620px) {
  .lk-footer-cta-inner {
    padding: 44px 0
  }

  .lk-footer-grid {
    grid-template-columns: 1fr;
    padding: 42px 0
  }

  .lk-footer-bottom nav {
    gap: 12px
  }

  .lk-footer-cta-button {
    width: 100%
  }
}

/* Icon crop fix + lighter compact footer refinement */
.lk-home-proof-item {
  overflow: visible
}

.lk-home-proof-item img {
  width: 54px;
  height: 54px;
  box-sizing: border-box;
  padding: 5px;
  object-fit: contain;
  object-position: center;
  /*overflow: visible; */
  margin: 0 auto 12px
}

.lk-home-proof-item img[src*="kompletni-servis-handshake"] {
  width: 72px;
  height: 72px;
  padding: 0;
  margin: -8px auto 2px;
  transform: none;
  transform-origin: center center
}

.lk-footer {
  background: #071B34;
  color: #fff;
  overflow: hidden
}

.lk-footer-cta {
  background: #F6F1E8;
  border-top: 1px solid rgba(200, 168, 90, .28);
  border-bottom: 1px solid rgba(7, 27, 52, .08)
}

.lk-footer-cta-inner {
  padding: 42px 0;
  gap: 24px
}

.lk-footer-eyebrow {
  color: #b89243;
  margin-bottom: 8px;
  font-size: .72rem
}

.lk-footer-cta h2 {
  color: #071B34;
  font-size: clamp(1.7rem, 2.45vw, 2.55rem);
  margin-bottom: 8px
}

.lk-footer-cta p {
  color: #24324a;
  font-size: .96rem;
  line-height: 1.55;
  font-weight: 600
}

.lk-footer-cta-button {
  background: linear-gradient(180deg, #d8bb72, #b89243);
  color: #071B34 !important;
  box-shadow: 0 10px 24px rgba(184, 146, 67, .22);
  min-height: 46px;
  padding: 12px 20px
}

.lk-footer-main {
  background: #071B34
}

.lk-footer-grid {
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 40px 0 32px
}

.lk-footer-brand h2 {
  font-size: 1.55rem;
  margin-bottom: 12px
}

.lk-footer-brand p {
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .68)
}

.lk-footer-col h3 {
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px
}

.lk-footer-col h3:after {
  width: 34px;
  height: 1px;
  margin-top: 9px
}

.lk-footer-col ul {
  gap: 8px
}

.lk-footer-col li,
.lk-footer-col a {
  font-size: .88rem;
  line-height: 1.38
}

.lk-footer-contact li {
  grid-template-columns: 18px 1fr;
  gap: 8px
}

.lk-footer-bottom {
  background: #06162B;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

.lk-footer-bottom-inner {
  min-height: 0;
  padding: 13px 0
}

.lk-footer-bottom p,
.lk-footer-bottom a {
  font-size: .75rem
}

.lk-footer-bottom nav {
  gap: 14px
}

.lk-footer-bottom a[lang] {
  font-size: .78rem
}

@media(max-width:992px) {
  .lk-footer-cta-inner {
    padding: 38px 0
  }

  .lk-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    padding: 36px 0 30px
  }

  .lk-footer-bottom-inner {
    padding: 12px 0
  }

  .lk-footer-bottom nav {
    margin-top: 8px
  }
}

@media(max-width:620px) {
  .lk-home-proof-item img {
    width: 50px;
    height: 50px
  }

  .lk-footer-cta-inner {
    padding: 36px 0
  }

  .lk-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0 28px
  }

  .lk-footer-cta-button {
    width: 100%;
    margin-top: 18px
  }

  .lk-footer-bottom nav {
    gap: 10px
  }
}

/* Polylang-ready language switcher + property gallery controls */
.lk-language-switcher {
  display: flex;
  align-items: center;
  gap: 6px
}

.lk-language-switcher a,
.lk-language-switcher .lk-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  border: 1px solid rgba(17, 27, 58, .14);
  border-radius: 999px;
  padding: 0 9px;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  color: var(--navy);
  background: #fff
}

.lk-language-switcher a:hover,
.lk-language-switcher .lk-lang-link:hover,
.lk-language-switcher .lk-lang-link.is-active {
  border-color: var(--gold);
  background: rgba(200, 168, 90, .14);
  color: var(--navy)
}

.lk-primary-nav ul,
.lk-primary-nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0
}

.lk-primary-nav li {
  margin: 0
}

.lk-gallery-main {
  position: relative;
  min-height: 260px
}

.lk-gallery-slide {
  display: none;
  margin: 0
}

.lk-gallery-slide.is-active {
  display: block
}

.lk-gallery-slide img {
  width: 100%;
  border-radius: 22px
}

.lk-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 27, 58, .82);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer
}

.lk-gallery-prev {
  left: 14px
}

.lk-gallery-next {
  right: 14px
}

.lk-gallery-arrow:hover {
  background: var(--gold);
  color: var(--navy)
}

.lk-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 4px
}

.lk-gallery-thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 70px;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0;
  background: none;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start
}

.lk-gallery-thumb.is-active {
  border-color: var(--gold)
}

.lk-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px
}

@media(max-width:992px) {

  .lk-primary-nav ul,
  .lk-primary-nav-list {
    flex-direction: column;
    align-items: flex-start
  }

  .lk-language-switcher {
    margin-top: 14px
  }
}

@media(max-width:620px) {
  .lk-gallery-arrow {
    width: 38px;
    height: 38px
  }

  .lk-gallery-thumb {
    width: 78px;
    height: 62px
  }
}


/* About Lucie page */
.lk-about-page {
  background: #fff;
  color: var(--text);
  overflow: hidden
}

.lk-about-page :where(h1, h2, h3) {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.08
}

.lk-about-page p {
  margin: 0;
  color: #4f5668
}

.lk-about-hero {
  padding: 108px 0 78px;
  background: radial-gradient(circle at 84% 12%, rgba(200, 168, 90, .28), transparent 30%), linear-gradient(135deg, var(--navy), #0d142d);
  color: #fff
}

.lk-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 54px;
  align-items: center
}

.lk-about-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900
}

.lk-about-hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5.2rem)
}

.lk-about-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.1rem;
  line-height: 1.75
}

.lk-about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px
}

.lk-about-visual {
  border-radius: 34px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
  padding: 26px
}

.lk-about-visual-card {
  border-radius: 28px;
  background: linear-gradient(160deg, #fff, var(--champagne));
  color: var(--navy);
  padding: 32px;
  box-shadow: var(--shadow)
}

.lk-about-visual-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  color: var(--navy)
}

.lk-about-visual-card span {
  display: block;
  margin-top: 10px;
  color: #4b5264;
  font-weight: 750
}

.lk-about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px
}

.lk-about-pill-list span {
  border-radius: 999px;
  background: rgba(17, 27, 58, .08);
  padding: 9px 12px;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 850
}

.lk-about-section {
  padding: 82px 0
}

.lk-about-section-soft {
  background: var(--soft)
}

.lk-about-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto
}

.lk-about-narrow {
  width: min(880px, calc(100% - 40px));
  margin-inline: auto
}

.lk-about-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
  align-items: start
}

.lk-about-intro h2,
.lk-about-work h2,
.lk-about-connection h2,
.lk-about-trust h2,
.lk-about-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.15rem)
}

.lk-about-intro p,
.lk-about-work p,
.lk-about-connection p,
.lk-about-trust p {
  font-size: 1.04rem;
  line-height: 1.85
}

.lk-about-lead-card {
  border-left: 4px solid var(--gold);
  background: #fff;
  border-radius: 0 24px 24px 0;
  box-shadow: var(--shadow);
  padding: 30px
}

.lk-about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px
}

.lk-about-card {
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .07);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px;
  min-height: 250px
}

.lk-about-card:before {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  margin-bottom: 20px
}

.lk-about-card h3 {
  margin: 0 0 14px;
  font-size: 1.38rem
}

.lk-about-card p {
  line-height: 1.68
}

.lk-about-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: 40px;
  align-items: center
}

.lk-about-work-panel,
.lk-about-connection-panel {
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .07);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 32px
}

.lk-about-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none
}

.lk-about-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: #343b4b;
  font-weight: 700
}

.lk-about-steps li span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--navy);
  font-weight: 950
}

.lk-about-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px
}

.lk-about-trust-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .07);
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850
}

.lk-about-connection-panel {
  background: linear-gradient(145deg, #fff, #f6f1e6)
}

.lk-about-connection-panel h3 {
  margin: 0 0 12px;
  font-size: 1.6rem
}

.lk-about-connection-panel ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px
}

.lk-about-connection-panel li {
  padding-left: 24px;
  position: relative;
  font-weight: 800;
  color: var(--navy)
}

.lk-about-connection-panel li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1
}

.lk-about-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff
}

.lk-about-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px
}

.lk-about-cta h2 {
  color: #fff
}

.lk-about-cta p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  line-height: 1.7
}

@media(max-width:1100px) {
  .lk-about-card-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .lk-about-trust-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .lk-about-hero {
    padding: 82px 0 62px
  }

  .lk-about-hero-grid,
  .lk-about-intro,
  .lk-about-two-col {
    grid-template-columns: 1fr
  }

  .lk-about-section {
    padding: 64px 0
  }

  .lk-about-cta-inner {
    display: block
  }

  .lk-about-cta .lk-btn {
    margin-top: 22px
  }
}

@media(max-width:620px) {

  .lk-about-container,
  .lk-about-narrow {
    width: calc(100% - 28px)
  }

  .lk-about-actions {
    flex-direction: column
  }

  .lk-about-card-grid,
  .lk-about-trust-grid {
    grid-template-columns: 1fr
  }

  .lk-about-visual,
  .lk-about-visual-card,
  .lk-about-lead-card,
  .lk-about-card,
  .lk-about-work-panel,
  .lk-about-connection-panel {
    border-radius: 20px
  }

  .lk-about-hero h1 {
    font-size: 2.55rem
  }
}

.lk-about-page .wp-block-button.lk-btn .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: inherit !important;
  border: 0 !important;
  border-radius: inherit;
  padding: 0 !important;
  min-height: auto;
  text-decoration: none;
  font: inherit;
  font-weight: inherit;
  box-shadow: none !important
}


/* About page v2 layout polish */
.lk-about-page {
  background: #fff
}

.lk-about-page :where(.lk-about-container) {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto
}

.lk-about-page :where(h1, h2, h3, p) {
  margin-top: 0
}

.lk-about-page :where(h1, h2, h3) {
  font-family: var(--serif);
  line-height: 1.08
}

.lk-about-page p {
  line-height: 1.72
}

.lk-about-page .wp-block-group {
  box-sizing: border-box
}

.lk-about-hero2 {
  background: radial-gradient(circle at 84% 18%, rgba(200, 168, 90, .26), transparent 31%), linear-gradient(135deg, #101b3a, #0d142d);
  color: #fff;
  padding: 96px 0 82px
}

.lk-about-hero2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 54px;
  align-items: center
}

.lk-about-kicker {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px
}

.lk-about-hero2 h1 {
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  margin-bottom: 18px
}

.lk-about-subtitle {
  color: var(--champagne) !important;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-family: var(--serif);
  font-weight: 500;
  margin-bottom: 22px
}

.lk-about-hero2-copy>p:not(.lk-about-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem
}

.lk-about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}

.lk-about-page .wp-block-button.lk-btn .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: inherit !important;
  border: 0 !important;
  border-radius: inherit;
  padding: 0 !important;
  min-height: auto;
  text-decoration: none;
  font: inherit;
  font-weight: inherit;
  box-shadow: none !important
}

.lk-about-hero2-card {
  background: linear-gradient(155deg, #fff, #f3ead8);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
  padding: 34px;
  color: var(--navy);
  position: relative;
  overflow: hidden
}

.lk-about-hero2-card:before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(200, 168, 90, .24)
}

.lk-about-card-label {
  position: relative;
  color: #b08c3d;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 18px
}

.lk-about-hero2-card h3 {
  position: relative;
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 16px
}

.lk-about-hero2-card>p:not(.lk-about-card-label) {
  position: relative;
  color: #4d5568
}

.lk-about-mini-stats {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 28px
}

.lk-about-mini-stats p {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 27, 58, .12)
}

.lk-about-mini-stats strong {
  color: var(--navy)
}

.lk-about-mini-stats span {
  color: #616879
}

.lk-about-section2 {
  padding: 82px 0
}

.lk-about-intro2 {
  background: #fff
}

.lk-about-intro2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: 46px;
  align-items: start
}

.lk-about-intro2 h2,
.lk-about-section-head h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  margin-bottom: 22px
}

.lk-about-intro2-copy p {
  font-size: 1.04rem;
  color: #485064
}

.lk-about-trust-column {
  display: grid;
  gap: 16px
}

.lk-about-trust-column p {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .08);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(17, 27, 58, .09);
  padding: 22px 24px
}

.lk-about-trust-column strong,
.lk-about-trust-column span {
  display: block
}

.lk-about-trust-column strong {
  color: var(--navy);
  font-size: 1.06rem;
  margin-bottom: 5px
}

.lk-about-trust-column span {
  color: #5e6576
}

.lk-about-services2,
.lk-about-trust2 {
  background: linear-gradient(180deg, #f8f7f4, #f2eee5)
}

.lk-about-section-head {
  max-width: 880px;
  margin-bottom: 34px
}

.lk-about-section-head p:not(.lk-about-kicker) {
  font-size: 1.04rem;
  color: #4f5668
}

.lk-about-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px
}

.lk-about-service-card {
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .07);
  border-radius: 26px;
  box-shadow: 0 20px 54px rgba(17, 27, 58, .1);
  padding: 28px;
  min-height: 270px
}

.lk-about-service-card:before {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  margin-bottom: 22px
}

.lk-about-service-card h3 {
  color: var(--navy);
  font-size: 1.42rem;
  margin-bottom: 14px
}

.lk-about-service-card p {
  color: #4f5668
}

.lk-about-process2 {
  background: #fff
}

.lk-about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative
}

.lk-about-process-grid:before {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, rgba(200, 168, 90, .2), rgba(200, 168, 90, .9), rgba(200, 168, 90, .2))
}

.lk-about-process-step {
  position: relative;
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(17, 27, 58, .09);
  padding: 28px;
  margin: 0 8px
}

.lk-about-step-number {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold) !important;
  font-weight: 950;
  margin-bottom: 22px;
  position: relative;
  z-index: 1
}

.lk-about-process-step h3 {
  color: var(--navy);
  font-size: 1.32rem;
  margin-bottom: 12px
}

.lk-about-process-step p:not(.lk-about-step-number) {
  color: #555d70
}

.lk-about-badge-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px
}

.lk-about-badge-grid p {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .08);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 16px 44px rgba(17, 27, 58, .08)
}

.lk-about-badge-grid strong,
.lk-about-badge-grid span {
  display: block
}

.lk-about-badge-grid strong {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px
}

.lk-about-badge-grid span {
  color: #626979;
  font-size: .92rem
}

.lk-about-connection2 {
  background: #fff
}

.lk-about-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px
}

.lk-about-split-card {
  background: linear-gradient(135deg, #fff, #f7f8fb);
  border: 1px solid rgba(17, 27, 58, .08);
  border-radius: 28px;
  box-shadow: 0 20px 56px rgba(17, 27, 58, .1);
  padding: 34px
}

.lk-about-split-card-gold {
  background: linear-gradient(135deg, #fff, #f5ecd8)
}

.lk-about-split-card h3 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 14px
}

.lk-about-split-card p {
  color: #4f5668
}

.lk-about-shared-values {
  margin: 26px 0 0;
  background: var(--navy);
  color: #fff !important;
  border-radius: 24px;
  padding: 24px 28px;
  font-weight: 750
}

.lk-about-final-cta {
  padding: 66px 0;
  background: linear-gradient(135deg, #f8f3e8, #fff);
  border-top: 1px solid rgba(200, 168, 90, .24)
}

.lk-about-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.lk-about-final-cta h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 10px
}

.lk-about-final-cta p {
  color: #4f5668;
  font-size: 1.05rem
}

@media(max-width:1180px) {

  .lk-about-service-grid,
  .lk-about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px
  }

  .lk-about-process-grid:before {
    display: none
  }

  .lk-about-badge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media(max-width:900px) {

  .lk-about-hero2-grid,
  .lk-about-intro2-grid,
  .lk-about-split-grid {
    grid-template-columns: 1fr
  }

  .lk-about-hero2 {
    padding: 78px 0 64px
  }

  .lk-about-section2 {
    padding: 64px 0
  }

  .lk-about-final-cta-inner {
    display: block
  }

  .lk-about-final-cta .wp-block-buttons {
    margin-top: 22px
  }
}

@media(max-width:640px) {
  .lk-about-page :where(.lk-about-container) {
    width: calc(100% - 28px)
  }

  .lk-about-hero2 h1 {
    font-size: 2.55rem
  }

  .lk-about-service-grid,
  .lk-about-process-grid,
  .lk-about-badge-grid {
    grid-template-columns: 1fr
  }

  .lk-about-mini-stats p {
    grid-template-columns: 1fr;
    gap: 4px
  }

  .lk-about-actions {
    flex-direction: column
  }

  .lk-about-hero2-card,
  .lk-about-service-card,
  .lk-about-process-step,
  .lk-about-split-card {
    border-radius: 20px
  }

  .lk-about-final-cta {
    padding: 52px 0
  }
}


/* About reference-style redesign */
.lk-about-page {
  background: #fff
}

.lk-about-page :where(.lk-about-ref-container) {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto
}

.lk-about-page :where(h1, h2, h3, p) {
  margin-top: 0
}

.lk-about-page :where(h1, h2, h3) {
  font-family: var(--serif);
  line-height: 1.08
}

.lk-about-page p {
  line-height: 1.7
}

.lk-about-page .wp-block-button .wp-block-button__link {
  font: inherit
}

.lk-about-page .wp-block-button.lk-btn .wp-block-button__link,
.lk-about-page .wp-block-button.lk-about-ref-btn-outline .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: inherit !important;
  border: 0 !important;
  border-radius: inherit;
  padding: 0 !important;
  min-height: auto;
  text-decoration: none;
  font-weight: inherit;
  box-shadow: none !important
}

.lk-about-ref-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 82% 18%, rgba(200, 168, 90, .22), transparent 30%), radial-gradient(circle at 64% 60%, rgba(255, 255, 255, .07), transparent 34%), linear-gradient(135deg, #0a1836, #101f43);
  color: #fff;
  padding: 92px 0 72px
}

.lk-about-ref-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255, 255, 255, .25) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .25) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 70% 35%, #000, transparent 62%)
}

.lk-about-ref-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 58px;
  align-items: center;
  min-height: 520px
}

.lk-about-ref-eyebrow {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 14px
}

.lk-about-ref-hero h1 {
  color: #fff;
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
  margin-bottom: 18px
}

.lk-about-ref-subtitle {
  color: #e8d8b8 !important;
  font-size: clamp(1.22rem, 1.8vw, 1.72rem);
  font-weight: 850;
  margin-bottom: 18px
}

.lk-about-ref-hero-copy>p:not(.lk-about-ref-eyebrow):not(.lk-about-ref-subtitle) {
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
  max-width: 720px
}

.lk-about-ref-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}

.lk-about-ref-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid rgba(200, 168, 90, .78);
  color: #f4dfaa;
  font-weight: 850
}

.lk-about-ref-portrait-wrap {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center
}

.lk-about-ref-portrait {
  width: min(390px, 82%);
  aspect-ratio: .78;
  border-radius: 42% 42% 28px 28px;
  background: linear-gradient(160deg, #f8f3e8, #c8a85a);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
  display: grid;
  place-items: center;
  overflow: hidden
}

.lk-about-ref-portrait p {
  font-family: var(--serif);
  font-size: 7rem;
  color: #0f1d3d;
  margin: 0;
  opacity: .84
}

.lk-about-ref-float-card {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: min(330px, 72%);
  background: rgba(8, 18, 40, .94);
  border: 1px solid rgba(200, 168, 90, .35);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .35);
  border-radius: 22px;
  padding: 20px
}

.lk-about-ref-float-card p {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 10px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.lk-about-ref-float-card p:last-child {
  border-bottom: 0
}

.lk-about-ref-float-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(200, 168, 90, .16);
  color: var(--gold);
  font-weight: 900
}

.lk-about-ref-float-card strong {
  font-size: .95rem
}

.lk-about-ref-section {
  padding: 88px 0
}

.lk-about-ref-intro {
  background: #fff
}

.lk-about-ref-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: 62px;
  align-items: start
}

.lk-about-ref-intro h2,
.lk-about-ref-section-head h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.65rem);
  color: var(--navy);
  margin-bottom: 22px
}

.lk-about-ref-intro-copy p:not(.lk-about-ref-eyebrow):not(.lk-about-ref-signature) {
  font-size: 1.04rem;
  color: #4d5568;
  max-width: 720px
}

.lk-about-ref-signature {
  font-family: Brush Script MT, Segoe Script, cursive;
  color: var(--gold) !important;
  font-size: 2.2rem !important;
  margin-top: 26px
}

.lk-about-ref-trust-list {
  display: grid;
  gap: 18px
}

.lk-about-ref-trust-list p {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  align-items: start;
  margin: 0;
  padding: 23px 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(17, 27, 58, .09);
  border: 1px solid rgba(17, 27, 58, .07)
}

.lk-about-ref-trust-list span {
  grid-row: 1/3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #f2ead9;
  color: var(--gold);
  font-weight: 950
}

.lk-about-ref-trust-list strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 4px
}

.lk-about-ref-trust-list em {
  display: block;
  color: #626a7a;
  font-style: normal
}

.lk-about-ref-services,
.lk-about-ref-trust,
.lk-about-ref-final-cta {
  background: #f7f3eb
}

.lk-about-ref-section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px
}

.lk-about-ref-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px
}

.lk-about-ref-service-card {
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 34px 24px;
  box-shadow: 0 12px 36px rgba(17, 27, 58, .08);
  border: 1px solid rgba(17, 27, 58, .06);
  min-height: 285px
}

.lk-about-ref-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #f2ead9;
  color: var(--gold) !important;
  font-size: 1.45rem;
  margin: 0 auto 22px
}

.lk-about-ref-service-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 14px
}

.lk-about-ref-service-card p:not(.lk-about-ref-icon) {
  color: #596171;
  font-size: .97rem
}

.lk-about-ref-process {
  background: #fff
}

.lk-about-ref-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  position: relative;
  margin-top: 12px
}

.lk-about-ref-timeline:before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 32px;
  border-top: 2px dashed rgba(200, 168, 90, .55)
}

.lk-about-ref-step {
  text-align: center;
  position: relative
}

.lk-about-ref-step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 950;
  font-size: 1.2rem;
  box-shadow: 0 10px 26px rgba(200, 168, 90, .25)
}

.lk-about-ref-step h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 10px
}

.lk-about-ref-step p:not(.lk-about-ref-step-number) {
  color: #5d6575;
  font-size: .96rem
}

.lk-about-ref-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  text-align: center
}

.lk-about-ref-badges p {
  margin: 0
}

.lk-about-ref-badges span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(17, 27, 58, .08)
}

.lk-about-ref-badges strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 6px
}

.lk-about-ref-badges em {
  display: block;
  color: #626a7a;
  font-style: normal;
  font-size: .92rem
}

.lk-about-ref-sectors {
  background: #fff
}

.lk-about-ref-sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px
}

.lk-about-ref-sector-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(17, 27, 58, .1);
  border: 1px solid rgba(17, 27, 58, .06)
}

.lk-about-ref-sector-dark {
  background: var(--navy);
  color: #fff
}

.lk-about-ref-sector-light {
  background: #f7f3eb;
  color: var(--navy)
}

.lk-about-ref-sector-image {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(200, 168, 90, .78), rgba(17, 27, 58, .65));
  min-height: 240px
}

.lk-about-ref-sector-image p {
  color: #fff;
  font-weight: 950;
  letter-spacing: .16em
}

.lk-about-ref-sector-copy {
  padding: 34px;
  align-self: center
}

.lk-about-ref-sector-copy h3 {
  font-size: 1.65rem;
  margin-bottom: 14px;
  color: inherit
}

.lk-about-ref-sector-copy p {
  color: inherit;
  opacity: .82
}

.lk-about-ref-link a {
  color: var(--gold);
  font-weight: 950;
  text-decoration: none
}

.lk-about-ref-final-cta {
  padding: 62px 0
}

.lk-about-ref-final-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px
}

.lk-about-ref-final-inner h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  margin-bottom: 10px
}

.lk-about-ref-final-inner p {
  color: #566070;
  font-size: 1.04rem
}

@media(max-width:1120px) {

  .lk-about-ref-card-grid,
  .lk-about-ref-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .lk-about-ref-timeline:before {
    display: none
  }

  .lk-about-ref-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .lk-about-ref-sector-card {
    grid-template-columns: 1fr
  }
}

@media(max-width:900px) {

  .lk-about-ref-hero-grid,
  .lk-about-ref-intro-grid,
  .lk-about-ref-sector-grid {
    grid-template-columns: 1fr
  }

  .lk-about-ref-hero {
    padding: 78px 0 64px
  }

  .lk-about-ref-portrait-wrap {
    min-height: 420px
  }

  .lk-about-ref-section {
    padding: 66px 0
  }

  .lk-about-ref-final-inner {
    display: block
  }

  .lk-about-ref-final-inner .wp-block-buttons {
    margin-top: 22px
  }
}

@media(max-width:640px) {
  .lk-about-page :where(.lk-about-ref-container) {
    width: calc(100% - 28px)
  }

  .lk-about-ref-hero h1 {
    font-size: 2.7rem
  }

  .lk-about-ref-card-grid,
  .lk-about-ref-timeline,
  .lk-about-ref-badges {
    grid-template-columns: 1fr
  }

  .lk-about-ref-actions {
    flex-direction: column
  }

  .lk-about-ref-float-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -34px
  }

  .lk-about-ref-portrait {
    width: min(300px, 80%)
  }

  .lk-about-ref-trust-list p {
    grid-template-columns: 1fr
  }

  .lk-about-ref-trust-list span {
    grid-row: auto;
    margin-bottom: 12px
  }

  .lk-about-ref-sector-copy {
    padding: 26px
  }

  .lk-about-ref-section-head {
    text-align: left
  }
}


/* About fresh homepage-style layout */
.lk-about-fresh {
  background: #fff
}

.lk-about-fresh .wp-block-button.lk-btn .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: inherit !important;
  border: 0 !important;
  border-radius: inherit;
  padding: 0 !important;
  min-height: auto;
  text-decoration: none;
  font: inherit;
  font-weight: inherit;
  box-shadow: none !important
}

.lk-about-fresh .lk-home-hero {
  padding-bottom: 0
}

.lk-about-fresh .lk-home-panel {
  display: flex;
  align-items: center
}

.lk-about-fresh .lk-home-panel .wp-block-buttons {
  margin-top: 22px
}

.lk-about-fresh .lk-home-proof figure {
  margin: 0
}

.lk-about-fresh .lk-home-proof img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto 12px
}

.lk-about-minimal-section {
  padding: 84px 0;
  background: #fff
}

.lk-about-minimal-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto
}

.lk-about-minimal-container {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 34px;
  align-items: stretch
}

.lk-about-minimal-copy {
  padding: 18px 0
}

.lk-about-minimal-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.4vw, 3.6rem);
  line-height: 1.08;
  color: #08284b;
  margin: 0 0 20px
}

.lk-about-minimal-copy p:not(.lk-home-kicker) {
  font-size: 1.04rem;
  color: #3d4658;
  max-width: 760px
}

.lk-about-minimal-card,
.lk-about-company-card {
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .08);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(17, 27, 58, .1);
  padding: 30px
}

.lk-about-minimal-card {
  background: linear-gradient(145deg, #fff, #f7f1e4)
}

.lk-about-minimal-card h3,
.lk-about-company-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: #08284b;
  margin: 0 0 16px
}

.lk-about-minimal-card ul {
  margin: 0;
  padding-left: 20px;
  color: #313949;
  font-weight: 650;
  line-height: 1.75
}

.lk-about-company {
  padding: 76px 0;
  background: #f7f7f8
}

.lk-about-company-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch
}

.lk-about-company-card p {
  margin: 0;
  color: #3f4758
}

.lk-about-bottom {
  padding: 70px 24px
}

.lk-about-bottom .wp-block-buttons {
  display: flex;
  justify-content: center;
  margin-top: 24px
}

.lk-about-bottom .lk-btn {
  margin-inline: auto
}

@media(max-width:980px) {

  .lk-about-minimal-container,
  .lk-about-company-grid {
    grid-template-columns: 1fr
  }

  .lk-about-minimal-section,
  .lk-about-company {
    padding: 62px 0
  }
}

@media(max-width:620px) {
  .lk-about-minimal-container {
    width: calc(100% - 28px)
  }

  .lk-about-minimal-card,
  .lk-about-company-card {
    border-radius: 18px;
    padding: 24px
  }

  .lk-about-bottom {
    padding: 54px 18px
  }

  .lk-about-fresh .lk-home-panel .wp-block-buttons .lk-btn {
    width: 100%
  }
}

.lk-about-fresh .lk-home-panel-realty {
  background-image: url('/wp-content/themes/lucie-kaplanova/assets/images/reality-background.webp')
}

.lk-about-fresh .lk-home-panel-logistics {
  background-image: url('/wp-content/themes/lucie-kaplanova/assets/images/logistics-background.webp')
}


/* About old-site inspired simple layout */
.lk-about-old {
  background: #fff;
  color: #202435
}

.lk-about-old :where(.lk-about-old-container) {
  width: min(1060px, calc(100% - 40px));
  margin-inline: auto
}

.lk-about-old :where(h1, h2, h3, h4) {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.1
}

.lk-about-old p {
  line-height: 1.76;
  color: #41495b
}

.lk-about-old .wp-block-button.lk-btn .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: inherit !important;
  border: 0 !important;
  border-radius: inherit;
  padding: 0 !important;
  min-height: auto;
  text-decoration: none;
  font: inherit;
  font-weight: inherit;
  box-shadow: none !important
}

.lk-about-old-hero {
  padding: 92px 0 72px;
  text-align: center;
  background: radial-gradient(circle at 50% 0, rgba(200, 168, 90, .25), transparent 34%), linear-gradient(135deg, #0f1c3b, #07162d);
  color: #fff
}

.lk-about-old-kicker {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold) !important;
  font-weight: 900;
  font-size: .78rem;
  margin: 0 0 14px
}

.lk-about-old-hero h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 18px
}

.lk-about-old-hero p:not(.lk-about-old-kicker) {
  max-width: 780px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem
}

.lk-about-old-main {
  padding: 82px 0;
  background: #fff
}

.lk-about-old-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start
}

.lk-about-old-content {
  background: #fff
}

.lk-about-old-content h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  margin: 0 0 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(17, 27, 58, .1)
}

.lk-about-old-content h3:first-child {
  padding-top: 0;
  border-top: 0
}

.lk-about-old-content p {
  font-size: 1.04rem;
  margin: 0 0 24px
}

.lk-about-old-side {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 112px
}

.lk-about-old-note {
  background: #f7f3eb;
  border: 1px solid rgba(200, 168, 90, .22);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 42px rgba(17, 27, 58, .08)
}

.lk-about-old-note p {
  margin: 0
}

.lk-about-old-note strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 5px
}

.lk-about-old-company {
  padding: 72px 0;
  background: #f7f7f8
}

.lk-about-old-company h4 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  padding: 12px 22px;
  margin: 0 auto 34px;
  font-family: var(--sans);
  font-size: .9rem
}

.lk-about-old-company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px
}

.lk-about-old-company-grid p {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .07);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(17, 27, 58, .08)
}

.lk-about-old-company-grid strong {
  color: var(--navy)
}

.lk-about-old-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, #f7f3eb, #fff);
  text-align: center
}

.lk-about-old-cta h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .03em
}

.lk-about-old-cta p {
  max-width: 680px;
  margin: 0 auto 24px
}

.lk-about-old-cta .wp-block-buttons {
  justify-content: center
}

@media(max-width:900px) {

  .lk-about-old-content-grid,
  .lk-about-old-company-grid {
    grid-template-columns: 1fr
  }

  .lk-about-old-side {
    position: static
  }

  .lk-about-old-main,
  .lk-about-old-company,
  .lk-about-old-cta {
    padding: 62px 0
  }
}

@media(max-width:620px) {
  .lk-about-old :where(.lk-about-old-container) {
    width: calc(100% - 28px)
  }

  .lk-about-old-hero {
    padding: 74px 0 58px
  }

  .lk-about-old-hero h1 {
    font-size: 2.6rem
  }

  .lk-about-old-note,
  .lk-about-old-company-grid p {
    border-radius: 18px;
    padding: 20px
  }

  .lk-about-old-company h4 {
    width: auto
  }
}

/* About page fresh requested layout */
.lk-about-current {
  background: #fff;
  color: #202435
}

.lk-about-current-container {
  width: min(1060px, calc(100% - 40px));
  margin-inline: auto
}

.lk-about-current :where(h1, h2) {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.08
}

.lk-about-current p {
  line-height: 1.78;
  color: #3f4758
}

.lk-about-current-hero {
  padding: 86px 0 68px;
  background: linear-gradient(135deg, #f8f4ec, #fff)
}

.lk-about-current-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: center
}

.lk-about-current-kicker {
  margin: 0 0 12px;
  color: #b89243 !important;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: .78rem
}

.lk-about-current h1 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  letter-spacing: .02em
}

.lk-about-current-copy p:not(.lk-about-current-kicker) {
  font-size: 1.16rem;
  max-width: 720px
}

.lk-about-current-photo-wrap {
  margin: 0;
  display: grid;
  place-items: center
}

.lk-about-current-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 70px rgba(17, 27, 58, .18);
  border: 10px solid #fff
}

.lk-about-current-main {
  padding: 74px 0;
  background: #fff
}

.lk-about-current-text-card {
  max-width: 900px
}

.lk-about-current-text-card p {
  font-size: 1.06rem;
  margin: 0 0 24px
}

.lk-about-current-company {
  padding: 70px 0;
  background: #f7f7f8
}

.lk-about-current-company h2 {
  text-align: center;
  margin: 0 0 32px;
  font-size: clamp(2rem, 3.2vw, 3.25rem)
}

.lk-about-current-company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px
}

.lk-about-current-company-card {
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .08);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(17, 27, 58, .08);
  padding: 26px
}

.lk-about-current-company-card-wide {
  grid-column: 1/-1
}

.lk-about-current-company-card p {
  margin: 0 0 8px;
  color: #3f4758
}

.lk-about-current-company-card p:last-child {
  margin-bottom: 0
}

.lk-about-current-company-card strong {
  color: #08284b
}

.lk-about-current-company-card a {
  color: #08284b;
  font-weight: 850;
  text-decoration: none
}

.lk-about-current-company-card a:hover {
  color: #b89243
}

.lk-about-current-lucci {
  background: #bcb5f0;
  padding: 42px 0;
  text-align: center
}

.lk-about-current-lucci a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #10162b;
  text-decoration: none;
  font-weight: 950;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.25
}

.lk-about-current-lucci a:hover {
  text-decoration: underline
}

.lk-whatsapp-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #25d366
}

.lk-whatsapp-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor
}

@media(max-width:840px) {

  .lk-about-current-hero-grid,
  .lk-about-current-company-grid {
    grid-template-columns: 1fr
  }

  .lk-about-current-photo {
    width: 240px;
    height: 240px
  }

  .lk-about-current-company-card-wide {
    grid-column: auto
  }

  .lk-about-current-hero,
  .lk-about-current-main,
  .lk-about-current-company {
    padding: 58px 0
  }
}

@media(max-width:620px) {
  .lk-about-current-container {
    width: calc(100% - 28px)
  }

  .lk-about-current h1 {
    font-size: 2.75rem
  }

  .lk-about-current-photo {
    width: 210px;
    height: 210px;
    border-width: 8px
  }

  .lk-about-current-company-card {
    border-radius: 18px;
    padding: 22px
  }

  .lk-about-current-lucci {
    padding: 34px 14px
  }
}

/* Contacts heading and centered desktop navigation */
.lk-contact-page #lk-contact-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.04;
  margin-bottom: 0;
  text-align: center
}

.lk-contact-company {
  padding-top: 48px
}

@media(min-width:993px) {
  .lk-header-inner {
    position: relative
  }

  .lk-nav-wrap {
    flex: 1;
    justify-content: flex-end
  }

  .lk-primary-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center
  }

  .lk-primary-nav ul,
  .lk-primary-nav-list {
    justify-content: center
  }

  .lk-language-switcher {
    margin-left: auto
  }
}

@media(max-width:992px) {
  .lk-primary-nav {
    position: static;
    transform: none
  }
}

/* Robust no-wrap desktop header navigation */
.admin-bar .lk-header {
  top: 32px
}

.lk-header-inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap
}

.lk-brand-logo,
.lk-nav-toggle,
.lk-language-switcher {
  flex: 0 0 auto
}

.lk-nav-wrap {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0
}

.lk-primary-nav,
.lk-primary-nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap
}

.lk-primary-nav {
  gap: 24px;
  font-size: .82rem;
  line-height: 1
}

.lk-primary-nav a,
.lk-primary-nav-list a {
  white-space: nowrap;
  line-height: 1.1
}

.lk-language-switcher {
  align-items: center;
  white-space: nowrap
}

@media(min-width:1350px) {
  .lk-header-inner {
    height: 76px;
    min-height: 76px
  }

  .lk-nav-wrap {
    gap: 18px
  }

  .lk-primary-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center
  }

  .lk-primary-nav-list {
    gap: 24px;
    justify-content: center
  }

  .lk-language-switcher {
    margin-left: auto
  }
}

@media(max-width:1349px) {
  .lk-header-inner {
    min-height: 72px
  }

  .lk-nav-toggle {
    display: block
  }

  .lk-nav-wrap {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    z-index: 100;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 20px;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px
  }

  .lk-nav-wrap.is-open {
    display: flex
  }

  .lk-primary-nav {
    position: static !important;
    transform: none !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-transform: none;
    letter-spacing: 0;
    font-size: .94rem;
    white-space: normal
  }

  .lk-primary-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    white-space: normal
  }

  .lk-primary-nav a:first-child:after {
    display: none
  }

  .lk-language-switcher {
    margin: 8px 0 0
  }
}

@media(max-width:782px) {
  .admin-bar .lk-header {
    top: 46px
  }
}

/* Flex sticky footer: footer stays at viewport bottom on short pages */
html {
  min-height: 100%
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column
}

.lk-main {
  flex: 1 0 auto
}

.lk-footer {
  flex-shrink: 0
}

.lk-contact-company {
  margin-bottom: 0
}

.lk-footer-bottom {
  margin-bottom: 0
}

/* Keep content clear of the mobile quick-contact bar */
@media(max-width:768px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px))
  }

  .lk-mobile-cta {
    min-height: 56px;
    padding-bottom: env(safe-area-inset-bottom, 0px)
  }

  .lk-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center
  }
}

@media(max-width:768px) {
  body.lk-contact-page-body {
    padding-bottom: 0
  }
}

/* Current navigation state should follow the active page, not always the first item */
.lk-primary-nav a:first-child:after {
  display: none
}

.lk-primary-nav a.is-current {
  position: relative
}

.lk-primary-nav a.is-current:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 3px;
  background: #c4a568
}

@media(max-width:1349px) {
  .lk-primary-nav a.is-current:after {
    display: none
  }
}

/* 2026-06-09 footer/contact/mobile CTA refinements */
.lk-footer-col li>span:not(.lk-whatsapp-icon) {
  color: rgba(255, 255, 255, .78)
}

@media(max-width:768px) {
  .lk-mobile-cta {
    grid-template-columns: repeat(4, 1fr)
  }

  body.lk-contact-page-body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px))
  }

  .lk-mobile-cta a {
    font-size: .78rem;
    padding-inline: 4px
  }
}

/* 2026-06-09 inquiry forms */
.lk-inquiry-section .lk-form-notice {
  margin-top: 18px;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 800
}

.lk-form-notice-success {
  background: rgba(39, 132, 93, .12);
  color: #1f6b4a;
  border: 1px solid rgba(39, 132, 93, .22)
}

.lk-form-notice-error {
  background: rgba(170, 48, 48, .1);
  color: #8f2f2f;
  border: 1px solid rgba(170, 48, 48, .2)
}

.lk-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important
}


/* 2026-06-09 contact map embed */
.lk-contact-map {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 27, 58, .08);
  background: #fff
}

.lk-contact-map iframe {
  display: block;
  width: 100%;
  min-height: 360px
}

@media(max-width:768px) {
  .lk-contact-map iframe {
    height: 340px;
    min-height: 340px
  }
}


/* 2026-06-09 about proof photos */
.lk-about-current-proof {
  padding: 0 0 48px
}

.lk-about-current-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start
}

.lk-about-current-proof-card img {
  width: 100%;
  height: auto;
  border-radius: 18px
}

.lk-about-current-proof-card:first-child {
  align-self: center
}

@media(max-width:768px) {
  .lk-about-current-proof {
    padding-bottom: 34px
  }

  .lk-about-current-proof-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .lk-about-current-proof-card {
    padding: 12px
  }
}


/* 2026-06-09 header social/contact icons */
.lk-header-social {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap
}

.lk-header-social-link {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(17, 27, 58, .14);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  text-decoration: none;
  transition: .18s ease
}

.lk-header-social-link svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor
}

.lk-header-social-link:hover,
.lk-header-social-link:focus-visible {
  border-color: var(--gold);
  background: rgba(200, 168, 90, .14);
  color: var(--navy);
  transform: translateY(-1px)
}

@media(min-width:1350px) {
  .lk-header-social {
    margin-left: auto
  }

  .lk-header-social+.lk-language-switcher {
    margin-left: 4px
  }
}

@media(max-width:1349px) {
  .lk-header-social {
    margin-top: 8px;
    gap: 10px
  }

  .lk-header-social-link {
    width: 36px;
    height: 36px
  }

  .lk-header-social-link svg {
    width: 18px;
    height: 18px
  }

  .lk-header-social+.lk-language-switcher {
    margin-top: 4px
  }
}


/* 2026-06-09 page hero backgrounds + logistics Europe map */
.lk-logistics-hero,
.lk-properties-hero {
  position: relative;
  overflow: hidden;
  min-height: var(--lk-page-hero-min-height);
  background-color: #0d142d;
  background-size: cover;
  background-position: center;
  color: #fff
}

.lk-logistics-hero {
  background-image: linear-gradient(90deg, rgba(13, 20, 45, .94), rgba(13, 20, 45, .72) 48%, rgba(13, 20, 45, .5)), url('/wp-content/themes/lucie-kaplanova/assets/images/logistics-background.webp')
}

.lk-properties-hero {
  background-image: linear-gradient(90deg, rgba(13, 20, 45, .94), rgba(13, 20, 45, .72) 48%, rgba(13, 20, 45, .5)), url('/wp-content/themes/lucie-kaplanova/assets/images/reality-background.webp')
}

.lk-logistics-hero .lk-container,
.lk-properties-hero .lk-container {
  position: relative;
  z-index: 1
}

.lk-logistics-map-heading p {
  max-width: 780px;
  color: #596071
}

.lk-logistics-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
  gap: 28px;
  align-items: stretch
}

.lk-europe-map-card,
.lk-logistics-country-panel {
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .07);
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.lk-europe-map-card {
  margin: 0;
  padding: 18px;
  overflow: hidden
}

.lk-europe-map-card figcaption {
  position: absolute;
  left: -9999px
}

.lk-europe-map {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px
}

.lk-europe-sea {
  fill: #eef3f6
}

.lk-europe-country {
  fill: #d9e0e7;
  stroke: #fff;
  stroke-width: 4;
  stroke-linejoin: round;
  transition: fill .2s ease, transform .2s ease, filter .2s ease
}

.lk-europe-country.is-active {
  fill: var(--gold);
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center
}

.lk-europe-country.is-active:hover,
.lk-europe-country.is-active:focus {
  fill: #d6b862;
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 16px rgba(17, 27, 58, .18));
  outline: none
}

.lk-europe-labels text {
  fill: #102040;
  font-size: 14px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none
}

.lk-logistics-country-panel {
  padding: 28px
}

.lk-logistics-country-panel h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.45rem
}

.lk-region-grid-map {
  gap: 10px
}

.lk-region-grid-map span {
  padding: 10px 13px;
  font-size: .9rem;
  background: var(--soft)
}

@media(max-width:992px) {
  :root {
    --lk-page-hero-min-height: 650px
  }

  .lk-logistics-map-layout {
    grid-template-columns: 1fr
  }

  .lk-europe-map {
    min-height: 0
  }

  .lk-logistics-hero,
  .lk-properties-hero {
    background-position: center top
  }
}

@media(max-width:620px) {
  .lk-europe-map-card {
    padding: 10px;
    border-radius: 18px
  }

  .lk-logistics-country-panel {
    padding: 22px;
    border-radius: 18px
  }

  .lk-europe-labels text {
    font-size: 12px
  }

  .lk-region-grid-map span {
    font-size: .84rem;
    padding: 9px 11px
  }

  .lk-logistics-hero,
  .lk-properties-hero {
    background-image: linear-gradient(180deg, rgba(13, 20, 45, .94), rgba(13, 20, 45, .72)), var(--lk-mobile-bg)
  }
}

@media(max-width:620px) {
  :root {
    --lk-page-hero-min-height: 960px
  }

  .lk-logistics-hero {
    --lk-mobile-bg: url('/wp-content/themes/lucie-kaplanova/assets/images/logistics-background.webp')
  }

  .lk-properties-hero {
    --lk-mobile-bg: url('/wp-content/themes/lucie-kaplanova/assets/images/reality-background.webp')
  }
}


/* 2026-06-09 real Europe coverage map refinement */
.lk-europe-map-card {
  background: linear-gradient(180deg, #fff, #fbfcfd);
  padding: 20px
}

.lk-europe-sea {
  fill: #f3f6f8
}

.lk-europe-countries {
  filter: drop-shadow(0 10px 18px rgba(17, 27, 58, .08))
}

.lk-europe-country {
  fill: #dfe5ea;
  stroke: #fff;
  stroke-width: 1.15;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke
}

.lk-europe-country.is-active {
  fill: var(--gold);
  stroke: #fff;
  stroke-width: 1.35
}

.lk-europe-country.is-active:hover,
.lk-europe-country.is-active:focus {
  fill: #d8bb68;
  filter: drop-shadow(0 6px 8px rgba(17, 27, 58, .22));
  transform: none
}

.lk-europe-country:not(.is-active) {
  pointer-events: none
}

.lk-europe-map {
  min-height: 390px
}

.lk-europe-labels {
  display: none
}

@media(max-width:620px) {
  .lk-europe-map {
    min-height: 280px
  }

  .lk-europe-map-card {
    padding: 10px
  }
}

/* 2026-06-09 premium property archive/detail refresh */
.lk-properties-list-hero {
  background: radial-gradient(circle at 78% 20%, rgba(200, 168, 90, .22), transparent 30%), linear-gradient(135deg, var(--navy), #0d142d)
}

.lk-property-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch
}

.lk-property-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 27, 58, .08);
  box-shadow: 0 22px 54px rgba(17, 27, 58, .1);
  transition: transform .22s ease, box-shadow .22s ease
}

.lk-property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(17, 27, 58, .16)
}

.lk-property-image {
  aspect-ratio: 1.36
}

.lk-property-badge {
  right: 16px;
  top: 16px;
  background: rgba(17, 27, 58, .92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .24)
}

.lk-property-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px
}

.lk-property-card h3 {
  margin: .25rem 0 .65rem;
  font-size: 1.28rem;
  line-height: 1.28;
  min-width: 0;
  min-height: 2.7em;
  max-width: 100%
}

.lk-property-card h3 a {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-decoration: none;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto
}

.lk-property-card .lk-property-id {
  min-height: 1.25em;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.lk-property-card .lk-property-location {
  min-height: 1.45em
}

.lk-property-price-eur {
  margin: .1rem 0 0;
  font-size: 1.42rem
}

.lk-property-price-czk {
  margin: .15rem 0 0;
  color: #596071;
  font-weight: 850
}

.lk-property-card-stats {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  min-height: 88px;
  margin: 18px 0 14px
}

.lk-property-card-stats div {
  text-align: center;
  padding: 11px 8px
}

.lk-property-card-text {
  display: -webkit-box;
  margin: 0 0 18px;
  color: #596071;
  font-size: .95rem;
  line-height: 1.5;
  min-height: 4.8em;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical
}

.lk-property-card-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  text-decoration: none
}

.lk-property-card-cta:hover {
  background: var(--gold);
  color: var(--navy)
}

.lk-property-detail-realhomes {
  padding: 42px 0 0;
  background: var(--soft)
}

.lk-property-detail-realhomes>.lk-container {
  padding-bottom: 80px
}

.lk-property-hero-gallery {
  margin-bottom: 28px
}

.lk-property-hero-gallery .lk-gallery-main {
  min-height: 520px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden
}

.lk-property-hero-gallery .lk-gallery-slide,
.lk-property-hero-gallery .lk-gallery-slide img {
  height: 100%
}

.lk-property-hero-gallery .lk-gallery-slide img {
  object-fit: cover;
  border-radius: 0
}

.lk-property-hero-gallery .lk-gallery-thumbs {
  padding: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(17, 27, 58, .08)
}

.lk-property-hero-gallery .lk-gallery-thumb {
  width: 112px;
  height: 78px
}

.lk-property-detail-main {
  padding: 34px;
  border: 1px solid rgba(17, 27, 58, .07)
}

.lk-detail-head-premium {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid rgba(17, 27, 58, .08);
  padding-bottom: 26px;
  margin-bottom: 26px
}

.lk-detail-head-premium h1 {
  margin: .15rem 0 0
}

.lk-detail-price-box {
  min-width: 260px;
  text-align: right;
  background: linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid rgba(17, 27, 58, .08);
  border-radius: 22px;
  padding: 20px
}

.lk-detail-price-box .lk-property-price {
  margin: 0
}

.lk-detail-price-box small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .78rem
}

.lk-detail-facts-premium {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 34px
}

.lk-detail-facts-premium div {
  padding: 17px;
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .07);
  border-radius: 18px
}

.lk-detail-facts-premium dt {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900
}

.lk-detail-facts-premium dd {
  font-size: 1.05rem;
  color: var(--navy)
}

.lk-detail-section {
  margin-top: 34px
}

.lk-detail-section h2 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  margin: 0 0 16px
}

.lk-benefits li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(17, 27, 58, .06)
}

.lk-benefits li:before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--gold);
  font-weight: 900
}

.lk-pagination {
  align-items: center;
  flex-wrap: wrap
}

.lk-pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 27, 58, .08);
  font-weight: 850
}

.lk-pagination .current {
  background: var(--navy);
  color: #fff
}

.lk-pagination .prev,
.lk-pagination .next {
  padding-inline: 18px;
  background: var(--gold);
  color: var(--navy)
}

@media(max-width:992px) {
  .lk-property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .lk-detail-head-premium {
    grid-template-columns: 1fr
  }

  .lk-detail-price-box {
    text-align: left;
    min-width: 0
  }

  .lk-detail-facts-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .lk-property-hero-gallery .lk-gallery-main {
    min-height: 430px
  }
}

@media(max-width:768px) {
  .lk-property-grid {
    grid-template-columns: 1fr
  }

  .lk-property-image {
    aspect-ratio: 1.45
  }

  .lk-property-card-stats,
  .lk-detail-facts-premium {
    grid-template-columns: 1fr
  }

  .lk-property-hero-gallery .lk-gallery-main {
    min-height: 300px;
    border-radius: 20px
  }

  .lk-property-hero-gallery .lk-gallery-thumb {
    width: 82px;
    height: 60px
  }

  .lk-property-detail-main {
    padding: 22px;
    border-radius: 18px
  }

  .lk-detail-head-premium {
    gap: 16px
  }

  .lk-detail-price-box {
    padding: 16px;
    border-radius: 18px
  }

  .lk-pagination .page-numbers {
    min-width: 46px;
    min-height: 46px
  }

  .lk-pagination .prev,
  .lk-pagination .next {
    width: 100%
  }
}

/* 2026-06-09 Lucide property detail icons + homepage language flags */
.lk-detail-fact-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(200, 168, 90, .12);
  border: 1px solid rgba(200, 168, 90, .25)
}

.lk-detail-fact-icon .lk-lucide-icon {
  width: 21px;
  height: 21px;
  display: block;
  stroke: currentColor;
  fill: none
}

.lk-detail-facts-premium div {
  position: relative
}

.lk-language-flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.lk-language-flag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .08);
  color: var(--navy);
  font-weight: 900;
  font-size: .82rem;
  line-height: 1
}

.lk-language-flag span:first-child {
  font-size: 1.05rem;
  line-height: 1
}

@media(max-width:768px) {
  .lk-detail-fact-icon {
    width: 34px;
    height: 34px
  }

  .lk-detail-fact-icon .lk-lucide-icon {
    width: 19px;
    height: 19px
  }

  .lk-language-flags {
    gap: 6px
  }

  .lk-language-flag {
    font-size: .78rem;
    padding: 5px 7px
  }
}

/* 2026-06-09 requested placement: fact label → icon → value, and two-line language support */
.lk-detail-facts-premium dd {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap
}

.lk-detail-facts-premium dd .lk-detail-fact-icon {
  flex: 0 0 auto;
  margin: 0
}

.lk-detail-fact-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  background: transparent;
  border: 0
}

.lk-detail-fact-icon .lk-lucide-icon {
  width: 22px;
  height: 22px
}

.lk-language-support {
  display: grid;
  gap: 7px;
  justify-items: center
}

.lk-language-support .lk-language-flags {
  display: block;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: .08em
}

/* 2026-06-10 properties hero image, archive card icons, larger about portrait */
.lk-properties-list-hero {
  position: relative;
  overflow: hidden;
  background-color: #0d142d;
  background-image: linear-gradient(90deg, rgba(13, 20, 45, .94), rgba(13, 20, 45, .73) 48%, rgba(13, 20, 45, .5)), url('/wp-content/themes/lucie-kaplanova/assets/images/reality-background.webp');
  background-size: cover;
  background-position: center;
  color: #fff
}

.lk-properties-list-hero .lk-container {
  position: relative;
  z-index: 1
}

.lk-property-card-stats {
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  align-items: stretch
}

.lk-property-card-stats dt {
  color: #4a3d32
}

.lk-property-card-stats dd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #2f2923;
  line-height: 1.1
}

.lk-property-card-stat-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex: 0 0 auto
}

.lk-property-card-stat-icon .lk-lucide-icon {
  width: 19px;
  height: 19px;
  display: block;
  stroke: currentColor;
  fill: none
}

.lk-about-current-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 64px
}

.lk-about-current-photo-wrap {
  justify-items: center
}

.lk-about-current-photo {
  width: min(420px, 100%);
  height: clamp(430px, 44vw, 560px);
  border-radius: 34px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 30px 82px rgba(17, 27, 58, .18);
  border: 10px solid #fff
}

@media(max-width:992px) {
  .lk-properties-list-hero {
    background-position: center top
  }
}

@media(max-width:840px) {
  .lk-about-current-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .lk-about-current-photo {
    width: min(360px, 100%);
    height: 460px
  }
}

@media(max-width:768px) {
  .lk-property-card-stats {
    grid-template-columns: repeat(auto-fit, minmax(78px, 1fr))
  }
}

@media(max-width:620px) {
  .lk-properties-list-hero {
    background-image: linear-gradient(180deg, rgba(13, 20, 45, .94), rgba(13, 20, 45, .74)), url('/wp-content/themes/lucie-kaplanova/assets/images/reality-background.webp')
  }

  .lk-about-current-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    border-radius: 26px;
    border-width: 8px
  }
}

/* 2026-06-10 mobile overflow fix for four-item bottom CTA and compact property facts */
@media(max-width:768px) {
  .lk-mobile-cta {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .lk-mobile-cta a {
    min-width: 0
  }

  .lk-subhero h1,
  .lk-subhero p {
    max-width: 100%;
    overflow-wrap: break-word
  }


  .lk-property-card {
    min-width: 0
  }

  .lk-property-card-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px
  }

  .lk-property-card-stats div {
    min-width: 0;
    padding: 10px 5px
  }

  .lk-property-card-stats dt {
    font-size: .69rem;
    white-space: normal
  }

  .lk-property-card-stats dd {
    gap: 4px
  }

  .lk-property-card-stat-icon {
    width: 18px;
    height: 18px
  }

  .lk-property-card-stat-icon .lk-lucide-icon {
    width: 17px;
    height: 17px
  }
}

/* 2026-06-10 about portrait: show full source image without aggressive crop */
.lk-about-current-photo {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff
}

@media(max-width:840px) {
  .lk-about-current-photo {
    height: auto
  }
}

@media(max-width:620px) {
  .lk-about-current-photo {
    height: auto;
    aspect-ratio: auto
  }
}

/* 2026-06-10 follow-up: harden properties hero visibility and match detail icon color exactly */
.lk-properties-list-hero.lk-properties-hero {
  background-color: #0d142d;
  background-size: cover;
  background-position: center;
  color: #fff
}

.lk-property-card-stat-icon {
  color: var(--gold)
}

.lk-property-card-stat-icon .lk-lucide-icon {
  stroke: currentColor;
  fill: none
}

@media(max-width:620px) {
  .lk-properties-list-hero.lk-properties-hero {
    background-image: linear-gradient(180deg, rgba(13, 20, 45, .94), rgba(13, 20, 45, .74)), url('/wp-content/themes/lucie-kaplanova/assets/images/reality-background.webp') !important
  }
}

/* 2026-06-10 follow-up: archive card CTA uses the same gold primary style as filter button */
.lk-property-card-cta.lk-btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: transparent;
  text-decoration: none
}

.lk-property-card-cta.lk-btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 168, 90, .28)
}

/* 2026-06-10 follow-up: align archive fact icons with numbers and show homepage language flags */
.lk-property-card-stats dd .lk-property-card-stat-icon {
  margin: 0;
  flex: 0 0 auto;
  vertical-align: middle
}

.lk-property-card-stats dd .lk-lucide-icon {
  display: block
}

.lk-home-proof-item .lk-language-support {
  display: grid;
  gap: 7px;
  justify-items: center
}

.lk-home-proof-item .lk-language-flags {
  display: block;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: .08em
}

/* 2026-06-10 follow-up: language codes use normal proof text style, flags have no separators */
.lk-home-proof-item .lk-language-support {
  gap: 5px;
  justify-items: center
}

.lk-home-proof-item .lk-language-flags {
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: .08em
}

/* 2026-06-10 editable logistics services */
.lk-logistics-services-heading p {
  max-width: 780px;
  color: #596071
}

.lk-logistics-service-grid {
  align-items: stretch
}

.lk-logistics-service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden
}

.lk-logistics-service-image {
  margin: -30px -30px 22px;
  aspect-ratio: 1.65;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--champagne))
}

.lk-logistics-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.lk-service-cta {
  margin-top: auto;
  align-self: flex-start
}

@media(max-width:576px) {
  .lk-logistics-service-image {
    margin: -22px -22px 20px
  }
}


/* 2026-06-10 editable about proof text */
.lk-about-current-proof-text {
  padding: 0 0 34px;
  background: #fff
}

.lk-about-current-proof-text-card {
  max-width: 980px;
  background: linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid rgba(17, 27, 58, .07);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(17, 27, 58, .09);
  padding: 30px 34px;
  color: #30384b
}

.lk-about-current-proof-text-card p {
  margin: 0 0 16px;
  font-size: 1.04rem;
  line-height: 1.75
}

.lk-about-current-proof-text-card p:last-child {
  margin-bottom: 0
}

@media(max-width:768px) {
  .lk-about-current-proof-text {
    padding-bottom: 24px
  }

  .lk-about-current-proof-text-card {
    border-radius: 18px;
    padding: 22px
  }

  .lk-about-current-proof-text-card p {
    font-size: 1rem
  }
}

/* 2026-06-10 property detail hero image fill fix */
.lk-property-hero-gallery .lk-gallery-main {
  height: clamp(420px, 52vw, 620px);
  min-height: 0;
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden
}

.lk-property-hero-gallery .lk-gallery-main::before,
.lk-property-hero-gallery .lk-gallery-main::after {
  content: none !important
}

.lk-property-hero-gallery .lk-gallery-slide {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden
}

.lk-property-hero-gallery .lk-gallery-slide.is-active {
  display: block
}

.lk-property-hero-gallery .lk-gallery-slide img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  border-radius: 0
}

@media(max-width:992px) {
  .lk-property-hero-gallery .lk-gallery-main {
    height: clamp(340px, 58vw, 480px)
  }
}

@media(max-width:768px) {
  .lk-property-hero-gallery .lk-gallery-main {
    height: clamp(260px, 68vw, 360px);
    border-radius: 20px
  }
}


/* 2026-06-10 language dropdown CZ/EN/DE */
.lk-language-dropdown {
  position: relative;
  display: block;
  margin: 0
}

.lk-language-dropdown .lk-lang-details {
  position: relative
}

.lk-language-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 58px;
  height: 34px;
  border: 1px solid rgba(17, 27, 58, .14);
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 950;
  line-height: 1
}

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

.lk-language-dropdown summary:after {
  content: '▾';
  font-size: .68rem;
  color: var(--gold);
  line-height: 1
}

.lk-language-dropdown .lk-lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 120;
  min-width: 88px;
  margin: 0;
  padding: 7px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(17, 27, 58, .12);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(17, 27, 58, .16)
}

.lk-language-dropdown .lk-lang-menu li {
  margin: 0
}

.lk-language-dropdown .lk-lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-width: 0;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 950;
  text-decoration: none
}

.lk-language-dropdown .lk-lang-link:hover,
.lk-language-dropdown .lk-lang-link:focus-visible,
.lk-language-dropdown .lk-lang-link.is-active {
  background: rgba(200, 168, 90, .14);
  color: var(--navy)
}

@media(max-width:1349px) {
  .lk-language-dropdown {
    margin: 4px 0 0
  }

  .lk-language-dropdown .lk-lang-menu {
    left: 0;
    right: auto
  }
}

/* 2026-06-11 properties archive card image warmth */
.post-type-archive-property .lk-property-card .lk-property-image {
  isolation: isolate
}

.post-type-archive-property .lk-property-card .lk-property-image>img {
  filter: brightness(1.12) contrast(.94) saturate(1.08) sepia(.08);
  transition: transform .35s ease, filter .35s ease
}

.post-type-archive-property .lk-property-card:hover .lk-property-image>img {
  filter: brightness(1.15) contrast(.95) saturate(1.1) sepia(.08)
}

.post-type-archive-property .lk-property-card .lk-property-image:has(>img)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 218, 150, .26) 0%, rgba(255, 172, 92, .16) 45%, rgba(255, 255, 255, .06) 100%);
  mix-blend-mode: soft-light
}

.post-type-archive-property .lk-property-card .lk-property-badge {
  z-index: 2
}

/* 2026-06-11 site-wide bottom-up reveal animations */
.lk-reveal {
  opacity: 1;
  transform: none;
  filter: none
}

.lk-reveal-ready .lk-reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.97);
  filter: blur(3px);
  will-change: opacity, transform, filter
}

.lk-reveal-ready .lk-reveal {
  transition: opacity .82s cubic-bezier(.16, .9, .24, 1), transform .82s cubic-bezier(.16, .9, .24, 1), filter .82s cubic-bezier(.16, .9, .24, 1);
  transition-delay: var(--lk-reveal-delay, 0ms)
}

.lk-reveal-ready .lk-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none
}

.post-type-archive-property #catalog.lk-reveal,
.post-type-archive-property .lk-property-card.lk-reveal,
.post-type-archive-property .lk-property-card .lk-reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important
}

@media(prefers-reduced-motion:reduce) {

  .lk-reveal,
  .lk-reveal-ready .lk-reveal,
  .lk-reveal-ready .lk-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important
  }
}

/* 2026-06-11 property archive simple previous/next pagination */
.lk-property-pagination {
  gap: 16px;
  margin-top: 42px
}

.lk-property-pagination .lk-pagination-control,
.lk-property-pagination .lk-pagination-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none
}

.lk-property-pagination .lk-pagination-control {
  padding: 12px 22px;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(200, 168, 90, .18);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease
}

.lk-property-pagination .lk-pagination-control:not(.is-disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(200, 168, 90, .28)
}

.lk-property-pagination .lk-pagination-control.is-disabled {
  background: #fff;
  color: var(--muted);
  border-color: rgba(17, 27, 58, .1);
  box-shadow: none;
  opacity: .6
}

.lk-property-pagination .lk-pagination-current {
  min-width: 88px;
  padding: 12px 18px;
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08)
}

@media(max-width:640px) {
  .lk-property-pagination {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
  }

  .lk-property-pagination .lk-pagination-control,
  .lk-property-pagination .lk-pagination-current {
    width: 100%
  }
}

/* 2026-06-11 brighter sand/sunrise feeling for properties archive only */
.post-type-archive-property {
  background: #fffdf8
}

.post-type-archive-property .lk-main {
  background: linear-gradient(180deg, #fffefa 0%, #fffaf2 45%, #fffdf9 100%)
}

.post-type-archive-property .lk-properties-list-hero.lk-properties-hero {
  background-image: linear-gradient(90deg, rgba(13, 20, 45, .82), rgba(52, 41, 30, .52) 46%, rgba(255, 190, 96, .20)), url('/wp-content/themes/lucie-kaplanova/assets/images/reality-background.webp') !important;
  background-position: left center !important
}

.post-type-archive-property #catalog.lk-section-soft {
  background: radial-gradient(circle at 8% 0%, rgba(255, 210, 128, .18), transparent 32%), radial-gradient(circle at 94% 14%, rgba(255, 237, 202, .22), transparent 30%), linear-gradient(180deg, #fffefd 0%, #fff9ef 52%, #fffdfa 100%)
}

.post-type-archive-property .lk-property-search,
.post-type-archive-property .lk-property-card {
  background: rgba(255, 255, 255, .985);
  border-color: rgba(200, 168, 90, .11);
  box-shadow: 0 22px 54px rgba(120, 86, 32, .09)
}

.post-type-archive-property .lk-property-card:hover {
  box-shadow: 0 30px 70px rgba(120, 86, 32, .14)
}

@media(max-width:620px) {
  .post-type-archive-property .lk-properties-list-hero.lk-properties-hero {
    background-image: linear-gradient(180deg, rgba(13, 20, 45, .76) 0%, rgba(62, 43, 26, .46) 56%, rgba(255, 190, 96, .18) 100%), url('/wp-content/themes/lucie-kaplanova/assets/images/reality-background.webp') !important;
    background-position: left center !important;
    background-size: cover !important
  }

  .post-type-archive-property #catalog.lk-section-soft {
    background: radial-gradient(circle at 0% 0%, rgba(255, 210, 128, .20), transparent 38%), linear-gradient(180deg, #fffefd 0%, #fff8ee 100%)
  }
}

/* 2026-06-11 near-white sand background for property detail pages */
.single-property {
  background: #fffdf8
}

.single-property .lk-main {
  background: linear-gradient(180deg, #fffefa 0%, #fffaf2 45%, #fffdf9 100%)
}

.single-property .lk-property-detail-realhomes,
.single-property .lk-property-detail {
  background: radial-gradient(circle at 8% 0%, rgba(255, 210, 128, .18), transparent 32%), radial-gradient(circle at 94% 14%, rgba(255, 237, 202, .22), transparent 30%), linear-gradient(180deg, #fffefd 0%, #fff9ef 52%, #fffdfa 100%)
}

.single-property .lk-property-detail-main,
.single-property .lk-contact-panel,
.single-property .lk-detail-price-box,
.single-property .lk-detail-facts-premium div {
  background: rgba(255, 255, 255, .985);
  border-color: rgba(200, 168, 90, .11);
  box-shadow: 0 22px 54px rgba(120, 86, 32, .09)
}

@media(max-width:620px) {

  .single-property .lk-property-detail-realhomes,
  .single-property .lk-property-detail {
    background: radial-gradient(circle at 0% 0%, rgba(255, 210, 128, .20), transparent 38%), linear-gradient(180deg, #fffefd 0%, #fff8ee 100%)
  }
}

/* 2026-06-11 premium contacts page redesign */
.lk-contact-page-body {
  background: #fffdf8
}

.lk-contact-page-body .lk-main {
  background: linear-gradient(180deg, #fffefa 0%, #fffaf2 42%, #fffdf9 100%)
}

.lk-contact-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background: radial-gradient(circle at 9% 0%, rgba(255, 210, 128, .28), transparent 34%), radial-gradient(circle at 92% 8%, rgba(17, 27, 58, .10), transparent 34%), linear-gradient(180deg, #fffefd 0%, #fff7eb 100%)
}

.lk-contact-hero:after {
  content: '';
  position: absolute;
  right: -12%;
  bottom: -34%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(200, 168, 90, .13);
  pointer-events: none
}

.lk-contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .78fr);
  gap: 56px;
  align-items: center
}

.lk-contact-hero-copy h1 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.035em
}

.lk-contact-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: #3d4658;
  font-size: 1.08rem
}

.lk-contact-hero-content {
  margin-top: 18px;
  color: #4b5362
}

.lk-contact-hero-visual {
  min-height: 390px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 244, 224, .78));
  box-shadow: 0 26px 70px rgba(120, 86, 32, .13), inset 0 0 0 1px rgba(200, 168, 90, .16);
  display: grid;
  place-items: center;
  padding: 34px;
  transform: rotate(1.2deg)
}

.lk-contact-notebook {
  position: relative;
  width: min(360px, 100%);
  min-height: 250px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fff9ef);
  box-shadow: 0 24px 58px rgba(17, 27, 58, .14);
  padding: 34px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.lk-contact-notebook:before {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  top: 78px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 168, 90, .55), transparent)
}

.lk-contact-notebook:after {
  content: '';
  position: absolute;
  right: 34px;
  bottom: 44px;
  width: 110px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #07162d, #c8a85a);
  transform: rotate(-28deg);
  box-shadow: 0 10px 18px rgba(17, 27, 58, .16)
}

.lk-contact-notebook span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 900
}

.lk-contact-notebook strong {
  max-width: 250px;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.12;
  font-weight: 500
}

.lk-contact-notebook em {
  font-style: normal;
  color: #687082;
  font-weight: 800
}

.lk-contact-cards-section,
.lk-contact-form-section,
.lk-contact-map-section {
  padding: 76px 0
}

.lk-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px
}

.lk-contact-card,
.lk-contact-form-card,
.lk-contact-quick-card {
  background: rgba(255, 255, 255, .985);
  border: 1px solid rgba(200, 168, 90, .13);
  border-radius: 30px;
  box-shadow: 0 24px 62px rgba(120, 86, 32, .09)
}

.lk-contact-card {
  padding: 34px
}

.lk-contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff4d8, #d8bb72);
  display: grid;
  place-items: center;
  color: var(--navy);
  margin-bottom: 20px
}

.lk-contact-card-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8
}

.lk-contact-card h2,
.lk-contact-form-card h2,
.lk-contact-quick-card h2,
.lk-contact-map-heading h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  line-height: 1.08;
  font-weight: 500
}

.lk-contact-list {
  display: grid;
  gap: 14px;
  margin: 0
}

.lk-contact-list div {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 27, 58, .07)
}

.lk-contact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0
}

.lk-contact-list dt {
  color: #7a8190;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900
}

.lk-contact-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800
}

.lk-contact-list a {
  color: var(--navy);
  text-decoration: none
}

.lk-contact-list a:hover {
  color: var(--gold)
}

.lk-contact-legal {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 27, 58, .07);
  color: #596170;
  font-size: .95rem
}

.lk-contact-form-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 247, 235, .76))
}

.lk-contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  align-items: start
}

.lk-contact-form-card {
  padding: 38px
}

.lk-contact-form-card>p {
  max-width: 720px;
  color: #596170;
  margin-top: -8px
}

.lk-contact-form {
  margin-top: 26px;
  box-shadow: none;
  border: 0;
  padding: 0;
  background: transparent
}

.lk-contact-form .lk-btn {
  justify-self: start;
  background: linear-gradient(180deg, #16264b, #07162d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(17, 27, 58, .18)
}

.lk-contact-form .lk-btn:hover {
  box-shadow: 0 18px 38px rgba(17, 27, 58, .24)
}

.lk-contact-quick-card {
  position: sticky;
  top: 110px;
  padding: 34px;
  background: linear-gradient(180deg, #fff, #fff8ed)
}

.lk-contact-quick-card p {
  color: #596170
}

.lk-contact-quick-card .lk-btn-primary,
.lk-contact-quick-card .lk-btn:not(.lk-btn-outline) {
  background: linear-gradient(180deg, #d8bb72, #b89243);
  color: var(--navy)
}

.lk-contact-quick-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(17, 27, 58, .08);
  display: grid;
  gap: 14px
}

.lk-contact-quick-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #485164;
  font-weight: 750
}

.lk-contact-quick-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold)
}

.lk-contact-map-section {
  padding-top: 66px
}

.lk-contact-map-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px
}

.lk-contact-map-heading p {
  margin: .25rem 0 0;
  color: #596170
}

.lk-contact-map-heading a:not(.lk-btn) {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none
}

.lk-contact-map {
  border-radius: 30px;
  border-color: rgba(200, 168, 90, .13);
  box-shadow: 0 24px 62px rgba(120, 86, 32, .10);
  overflow: hidden
}

.lk-contact-map iframe {
  min-height: 430px;
  filter: saturate(.92) contrast(.98)
}

@media(max-width:992px) {

  .lk-contact-hero-grid,
  .lk-contact-cards-grid,
  .lk-contact-form-grid {
    grid-template-columns: 1fr
  }

  .lk-contact-hero {
    padding: 74px 0 58px
  }

  .lk-contact-hero-visual {
    min-height: 300px
  }

  .lk-contact-quick-card {
    position: static
  }

  .lk-contact-map-heading {
    align-items: flex-start;
    flex-direction: column
  }
}

@media(max-width:620px) {
  .lk-contact-hero {
    padding: 58px 0 44px
  }

  .lk-contact-hero-copy h1 {
    font-size: 2.65rem
  }

  .lk-contact-hero-visual {
    display: none
  }

  .lk-contact-cards-section,
  .lk-contact-form-section,
  .lk-contact-map-section {
    padding: 54px 0
  }

  .lk-contact-card,
  .lk-contact-form-card,
  .lk-contact-quick-card {
    border-radius: 22px;
    padding: 24px
  }

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

  .lk-contact-form .lk-btn,
  .lk-contact-map-heading .lk-btn {
    width: 100%
  }

  .lk-contact-map {
    border-radius: 22px
  }

  .lk-contact-map iframe {
    height: 360px;
    min-height: 360px
  }
}

/* 2026-06-11 contacts hero Lucie photo */
.lk-contact-hero-photo-wrap {
  padding: 18px;
  transform: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 244, 224, .78))
}

.lk-contact-hero-photo {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(17, 27, 58, .14)
}

.lk-contact-hero-photo:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 52%, rgba(17, 27, 58, .18));
  pointer-events: none
}

.lk-contact-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center top
}

@media(max-width:992px) {

  .lk-contact-hero-photo,
  .lk-contact-hero-photo img {
    min-height: 330px
  }
}

@media(max-width:620px) {
  .lk-contact-hero-visual.lk-contact-hero-photo-wrap {
    display: block;
    min-height: 0;
    padding: 10px
  }

  .lk-contact-hero-photo,
  .lk-contact-hero-photo img {
    min-height: 310px;
    border-radius: 20px
  }
}

.lk-property-card .lk-property-price-eur,
.lk-property-card .lk-property-price-czk {
  width: 100%;
  text-align: right;
  align-self: flex-end
}

.lk-property-card-gallery {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--champagne))
}

.lk-property-card-gallery .lk-gallery-slide {
  width: 100%;
  height: 100%;
  border-radius: 0;
  text-decoration: none
}

.lk-property-card-gallery .lk-gallery-slide.is-active {
  display: block
}

.lk-property-card-gallery .lk-gallery-slide img,
.lk-property-card-gallery .lk-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0
}

.lk-property-card-gallery .lk-gallery-arrow {
  width: 36px;
  height: 36px;
  font-size: 1.65rem;
  background: rgba(17, 27, 58, .72);
  opacity: .94
}

.lk-property-card-gallery .lk-gallery-prev {
  left: 10px
}

.lk-property-card-gallery .lk-gallery-next {
  right: 10px
}

.lk-property-card-gallery .lk-property-badge {
  z-index: 4
}

.lk-property-card-gallery .lk-gallery-arrow:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px
}

.lk-property-detail-realhomes .lk-property-hero-gallery {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw)
}

.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-main {
  border-radius: 0
}

.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-slide.is-active {
  width: 100%
}

.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-slide img {
  width: 100%
}

/* 2026-06-12 property detail gallery: taller image, less bottom crop */
.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-main {
  height: clamp(720px, 58vw, 1120px);
  min-height: 0;
  border-radius: 0;
  overflow: hidden
}

.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-slide {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden
}

.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-slide.is-active {
  display: block;
  width: 100%;
  height: 100%
}

.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-slide img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0
}

.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-thumbs {
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 14px auto 0;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(17, 27, 58, .08);
  overflow-x: auto
}

.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-thumb {
  flex: 0 0 auto
}

@media(max-width:992px) {
  .lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-main {
    height: clamp(500px, 66vw, 740px)
  }
}

@media(max-width:768px) {
  .lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-main {
    height: clamp(320px, 76vw, 460px)
  }

  .lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-thumbs {
    max-width: calc(100% - 28px);
    margin-top: 12px;
    padding: 10px;
    justify-content: center
  }
}

.lk-property-detail-realhomes {
  overflow-x: hidden
}

.lk-property-detail-realhomes {
  padding-top: 0;
  overflow-x: hidden
}

.lk-property-detail-realhomes .lk-property-hero-gallery {
  margin-bottom: 28px
}

.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-main {
  position: relative
}

.lk-property-detail-realhomes .lk-breadcrumbs-overlay {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(17, 27, 58, .68), rgba(17, 27, 58, .48));
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 46px rgba(17, 27, 58, .18)
}

.lk-property-detail-realhomes .lk-breadcrumbs-overlay a {
  color: #fff;
  text-decoration: none
}

.lk-property-detail-realhomes .lk-breadcrumbs-overlay a:hover {
  color: var(--champagne)
}

.lk-property-detail-realhomes .lk-breadcrumbs-overlay span {
  color: inherit
}

.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-prev,
.lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-next {
  top: calc(50% + 20px)
}

@media(max-width:768px) {
  .lk-property-detail-realhomes .lk-breadcrumbs-overlay {
    top: 16px;
    width: calc(100% - 28px);
    padding: 10px 14px;
    border-radius: 18px;
    font-size: .82rem
  }

  .lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-prev,
  .lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-next {
    top: 50%
  }
}

/* 2026-06-12 property detail fullscreen lightbox */
.lk-property-detail-realhomes .lk-gallery-main--zoomable {
  cursor: zoom-in
}

.lk-property-detail-realhomes .lk-gallery-main--zoomable .lk-gallery-slide img,
.lk-property-detail-realhomes .lk-gallery-main--zoomable .lk-image-placeholder {
  transition: transform .28s ease, filter .28s ease
}

.lk-property-detail-realhomes .lk-gallery-main--zoomable:hover .lk-gallery-slide.is-active img {
  transform: scale(1.02);
  filter: brightness(1.03)
}

body.lk-lightbox-open {
  overflow: hidden
}

.lk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block
}

.lk-lightbox[hidden] {
  display: none !important
}

.lk-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 38, .82);
  backdrop-filter: blur(12px)
}

.lk-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 32px
}

.lk-lightbox__figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 96vw;
  max-height: 92vh
}

.lk-lightbox__image {
  display: block;
  max-width: 96vw;
  max-height: 92vh;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35)
}

.lk-lightbox__image[hidden] {
  display: none !important
}

.lk-lightbox__video {
  display: block;
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35)
}

.lk-lightbox__video[hidden] {
  display: none !important
}

.lk-lightbox__close,
.lk-lightbox__arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease
}

.lk-lightbox__close:hover,
.lk-lightbox__arrow:hover {
  background: rgba(232, 216, 184, .95);
  color: var(--navy)
}

.lk-lightbox__close:hover {
  transform: translateY(-1px)
}

.lk-lightbox__arrow:hover {
  transform: translateY(-50%)
}

.lk-lightbox__close {
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1
}

.lk-lightbox__arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  font-size: 2.3rem;
  line-height: 1
}

.lk-lightbox__prev {
  left: 20px
}

.lk-lightbox__next {
  right: 20px
}

.lk-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  min-width: 78px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em
}

.lk-lightbox__arrow[hidden],
.lk-lightbox__counter:empty {
  display: none !important
}

@media(max-width:768px) {
  .lk-lightbox__dialog {
    padding: 18px 18px 92px
  }

  .lk-lightbox__image {
    max-width: 94vw;
    max-height: 78vh;
    border-radius: 14px
  }

  .lk-lightbox__close {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    font-size: 1.75rem
  }

  .lk-lightbox__arrow {
    width: 46px;
    height: 46px;
    top: auto;
    bottom: 18px;
    transform: none;
    font-size: 1.9rem
  }

  .lk-lightbox__arrow:hover {
    transform: translateY(-1px)
  }

  .lk-lightbox__prev {
    left: calc(50% - 86px)
  }

  .lk-lightbox__next {
    right: calc(50% - 86px)
  }

  .lk-lightbox__counter {
    bottom: 22px;
    padding: 7px 12px;
    font-size: .84rem
  }
}

@media(min-width:993px) {
  .lk-property-detail-realhomes .lk-property-hero-gallery .lk-gallery-thumb {
    width: 134px;
    height: 94px
  }
}
/* 2026-06-13 fullscreen mobile navigation dropdown */
.lk-nav-icon {
  display: none
}

@media(max-width:1349px) {
  body.lk-nav-open {
    overflow: hidden
  }

  body.lk-nav-open .lk-header {
    z-index: 1000
  }

  body.lk-nav-open .lk-nav-toggle {
    position: fixed;
    top: 28px;
    right: 34px;
    z-index: 1101;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(210, 175, 101, .4);
    border-radius: 999px;
    background: rgba(5, 18, 36, .52);
    backdrop-filter: blur(10px)
  }

  body.lk-nav-open .lk-nav-toggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    margin: 0;
    background: #d1ad65
  }

  body.lk-nav-open .lk-nav-toggle span:nth-child(1) {
    transform: rotate(45deg)
  }

  body.lk-nav-open .lk-nav-toggle span:nth-child(2) {
    opacity: 0
  }

  body.lk-nav-open .lk-nav-toggle span:nth-child(3) {
    transform: rotate(-45deg)
  }

  .lk-nav-wrap {
    background: #07172e
  }

  .lk-nav-wrap.is-open {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: minmax(360px, .66fr) minmax(260px, .34fr);
    align-content: start;
    column-gap: clamp(32px, 5vw, 78px);
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: auto;
    padding: clamp(82px, 9vw, 118px) clamp(42px, 8vw, 118px) clamp(42px, 7vw, 86px);
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background-image:
      radial-gradient(circle at 78% 20%, rgba(210, 175, 101, .14), transparent 28%),
      linear-gradient(90deg, rgba(3, 13, 29, .96), rgba(6, 24, 48, .92) 45%, rgba(8, 31, 58, .86)),
      url('/wp-content/themes/lucie-kaplanova/assets/images/logistics-background.webp');
    background-size: cover;
    background-position: center;
    color: #fff
  }


  .lk-nav-wrap.is-open .lk-primary-nav,
  .lk-nav-wrap.is-open .lk-primary-nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 650px;
    margin: 0;
    padding: 0;
    white-space: normal;
    list-style: none;
    text-transform: none;
    letter-spacing: 0;
    font-size: clamp(1.15rem, 2.1vw, 1.68rem);
    line-height: 1.1
  }

  .lk-nav-wrap.is-open .lk-primary-nav {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative !important;
    transform: none !important
  }

  .lk-nav-wrap.is-open .lk-primary-nav li {
    width: 100%;
    margin: 0
  }

  .lk-nav-wrap.is-open .lk-primary-nav a,
  .lk-nav-wrap.is-open .lk-primary-nav-list a {
    position: relative;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 18px;
    min-height: clamp(62px, 7vw, 82px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(210, 175, 101, .28);
    color: rgba(255, 255, 255, .86);
    font-weight: 750;
    text-decoration: none;
    white-space: normal
  }

  .lk-nav-wrap.is-open .lk-primary-nav a:first-child,
  .lk-nav-wrap.is-open .lk-primary-nav-list li:first-child a {
    border-top: 1px solid rgba(210, 175, 101, .28)
  }

  .lk-nav-wrap.is-open .lk-primary-nav a:after,
  .lk-nav-wrap.is-open .lk-primary-nav-list a:after {
    content: '›';
    display: block !important;
    position: static;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #d1ad65;
    font-size: 1.9rem;
    line-height: 1;
    transform: none
  }

  .lk-nav-wrap.is-open .lk-primary-nav a:hover,
  .lk-nav-wrap.is-open .lk-primary-nav a:focus-visible,
  .lk-nav-wrap.is-open .lk-primary-nav a.is-current,
  .lk-nav-wrap.is-open .lk-primary-nav-list a:hover,
  .lk-nav-wrap.is-open .lk-primary-nav-list a:focus-visible,
  .lk-nav-wrap.is-open .lk-primary-nav-list a.is-current {
    color: #d1ad65
  }

  .lk-nav-wrap.is-open .lk-nav-icon {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    color: #d1ad65
  }

  .lk-nav-wrap.is-open .lk-nav-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
  }

  .lk-nav-wrap.is-open .lk-header-social,
  .lk-nav-wrap.is-open .lk-language-switcher {
    grid-column: 2;
    position: relative;
    z-index: 1;
    margin: 0;
    padding-left: clamp(28px, 4vw, 58px);
    border-left: 1px solid rgba(210, 175, 101, .26)
  }

  .lk-nav-wrap.is-open .lk-header-social {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 14px;
    padding-top: 6px
  }

  .lk-nav-wrap.is-open .lk-header-social:before {
    content: 'Spojte se se mnou';
    flex: 0 0 100%;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    font-weight: 750
  }

  .lk-nav-wrap.is-open .lk-header-social-link {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(210, 175, 101, .64);
    border-radius: 999px;
    color: #d1ad65;
    background: rgba(255, 255, 255, .03)
  }

  .lk-nav-wrap.is-open .lk-header-social-link svg {
    width: 19px;
    height: 19px;
    fill: currentColor
  }

  .lk-nav-wrap.is-open .lk-language-switcher {
    padding-top: 34px
  }

  .lk-nav-wrap.is-open .lk-language-dropdown summary {
    min-width: 74px;
    height: 42px;
    border-color: rgba(210, 175, 101, .64);
    background: rgba(255, 255, 255, .03);
    color: #fff
  }

  .lk-nav-wrap.is-open .lk-language-dropdown summary:after {
    color: #d1ad65
  }

  .lk-nav-wrap.is-open .lk-language-dropdown .lk-lang-menu {
    left: clamp(28px, 4vw, 58px);
    right: auto;
    background: rgba(5, 18, 36, .96);
    border-color: rgba(210, 175, 101, .38)
  }

  .lk-nav-wrap.is-open .lk-language-dropdown .lk-lang-link {
    color: #fff
  }

  .lk-nav-wrap.is-open .lk-language-dropdown .lk-lang-link:hover,
  .lk-nav-wrap.is-open .lk-language-dropdown .lk-lang-link:focus-visible,
  .lk-nav-wrap.is-open .lk-language-dropdown .lk-lang-link.is-active {
    background: rgba(210, 175, 101, .18);
    color: #d1ad65
  }
}

@media(max-width:760px) {
  .lk-nav-wrap.is-open {
    grid-template-columns: 1fr;
    row-gap: 34px;
    padding: 82px 26px 46px
  }

  .lk-nav-wrap.is-open .lk-primary-nav,
  .lk-nav-wrap.is-open .lk-header-social,
  .lk-nav-wrap.is-open .lk-language-switcher {
    grid-column: 1;
    padding-left: 0;
    border-left: 0
  }

  .lk-nav-wrap.is-open .lk-primary-nav {
    grid-row: auto
  }

  .lk-nav-wrap.is-open .lk-primary-nav a,
  .lk-nav-wrap.is-open .lk-primary-nav-list a {
    grid-template-columns: 32px minmax(0, 1fr) 20px;
    gap: 14px;
    min-height: 58px;
    font-size: 1.05rem
  }

  body.lk-nav-open .lk-nav-toggle {
    top: 18px;
    right: 18px
  }

  .lk-nav-wrap.is-open .lk-language-dropdown .lk-lang-menu {
    left: 0
  }
}

/* 2026-06-13 dropdown polish after visual check */
@media(max-width:1349px) {
  .lk-nav-wrap.is-open .lk-primary-nav {
    left: auto !important;
    right: auto !important;
    justify-self: start
  }

  .lk-nav-wrap.is-open .lk-language-switcher {
    padding-top: 22px
  }
}

@media(max-width:992px) and (min-width:761px) {
  .lk-nav-wrap.is-open .lk-header-social {
    gap: 10px
  }

  .lk-nav-wrap.is-open .lk-header-social-link {
    width: 40px;
    height: 40px
  }
}

@media(max-width:760px) {
  .lk-nav-wrap.is-open .lk-language-switcher {
    padding-top: 10px
  }

  body.lk-nav-open .lk-nav-toggle {
    top: 22px;
    right: 22px
  }
}

/* 2026-06-13 dropdown tablet layout: avoid cramped two-column social area */
@media(max-width:900px) {
  .lk-nav-wrap.is-open {
    grid-template-columns: 1fr;
    row-gap: 34px;
    padding: 82px 32px 46px
  }

  .lk-nav-wrap.is-open .lk-primary-nav,
  .lk-nav-wrap.is-open .lk-header-social,
  .lk-nav-wrap.is-open .lk-language-switcher {
    grid-column: 1;
    padding-left: 0;
    border-left: 0
  }

  .lk-nav-wrap.is-open .lk-primary-nav {
    grid-row: auto;
    max-width: none
  }

  .lk-nav-wrap.is-open .lk-header-social {
    max-width: 460px
  }

  .lk-nav-wrap.is-open .lk-language-dropdown .lk-lang-menu {
    left: 0
  }
}

/* 2026-06-13 mobile nav language dropdown containment + translated social heading */
@media(max-width:1349px) {
  html[lang^="en"] .lk-nav-wrap.is-open .lk-header-social:before {
    content: 'Get in touch'
  }

  html[lang^="de"] .lk-nav-wrap.is-open .lk-header-social:before {
    content: 'Kontakt aufnehmen'
  }

  .lk-nav-wrap.is-open {
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain
  }

  .lk-nav-wrap.is-open .lk-language-dropdown .lk-lang-menu {
    top: auto;
    bottom: calc(100% + 8px);
    left: clamp(28px, 4vw, 58px);
    right: auto
  }
}

@media(max-width:900px) {
  .lk-nav-wrap.is-open .lk-language-dropdown .lk-lang-menu {
    left: 0
  }
}

/* 2026-06-13 hard lock: logistics/properties hero backgrounds stay equal height */
.lk-logistics-hero,
.lk-properties-list-hero.lk-properties-hero {
  min-height: 760px
}

@media(max-width:992px) {
  .lk-logistics-hero,
  .lk-properties-list-hero.lk-properties-hero {
    min-height: 650px
  }
}

@media(max-width:620px) {
  .lk-logistics-hero,
  .lk-properties-list-hero.lk-properties-hero {
    min-height: 960px
  }
}

/* ================================================
   Property Carousel – Sreality-style 3-panel
   2026-06-14
   ================================================ */

/* Full-width breakout from .lk-container */
.lk-property-detail-realhomes .lk-property-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 36px
}

.lk-property-carousel {
  position: relative;
  display: flex;
  height: clamp(460px, 52vh, 620px);
  background: #0b1226;
  overflow: hidden
}

/* ---- Panels ---- */
.lk-property-carousel__panel {
  position: relative;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity 0.2s ease
}

.lk-property-carousel__panel--prev,
.lk-property-carousel__panel--next {
  width: 22%;
  cursor: pointer
}

.lk-property-carousel__panel--main {
  width: 56%;
  cursor: zoom-in
}

.lk-property-carousel__panel--main img {
  transition: transform 0.28s ease, filter 0.28s ease
}

.lk-property-carousel__panel--main:hover img {
  transform: scale(1.02);
  filter: brightness(1.04)
}

.lk-property-carousel--single .lk-property-carousel__panel--prev,
.lk-property-carousel--single .lk-property-carousel__panel--next {
  display: none
}

.lk-property-carousel--single .lk-property-carousel__panel--main {
  width: 100%
}

/* Images fill their panel */
.lk-property-carousel__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none
}

/* Dark overlay on side panels */
.lk-property-carousel__panel--prev::after,
.lk-property-carousel__panel--next::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
  z-index: 1;
  transition: background 0.22s ease
}

.lk-property-carousel__panel--prev:hover::after,
.lk-property-carousel__panel--next:hover::after {
  background: rgba(0, 0, 0, 0.2)
}

/* Thin dark gap between panels */
.lk-property-carousel__panel--prev {
  border-right: 4px solid #0b1226
}

.lk-property-carousel__panel--next {
  border-left: 4px solid #0b1226
}

/* ---- Breadcrumbs overlay ---- */
.lk-property-carousel .lk-breadcrumbs-overlay {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(17, 27, 58, .68), rgba(17, 27, 58, .48));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 46px rgba(17, 27, 58, .18)
}

.lk-property-carousel .lk-breadcrumbs-overlay a {
  color: #fff;
  text-decoration: none
}

.lk-property-carousel .lk-breadcrumbs-overlay a:hover {
  color: var(--champagne)
}

.lk-property-carousel .lk-breadcrumbs-overlay span {
  color: inherit
}

/* ---- Arrow buttons ---- */
.lk-property-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 27, 58, .82);
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease
}

.lk-property-carousel__arrow--prev {
  left: calc(22% + 14px)
}

.lk-property-carousel__arrow--next {
  right: calc(22% + 14px)
}

.lk-property-carousel__arrow:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-50%) scale(1.07)
}

.lk-property-carousel__arrow:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px
}

/* ---- Pagination dots ---- */
.lk-property-carousel__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  background: rgba(11, 18, 38, .52);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px)
}

.lk-property-carousel__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .4);
  transition: background 0.22s ease, transform 0.22s ease;
  cursor: pointer
}

.lk-property-carousel__dot.is-active {
  background: var(--gold);
  transform: scale(1.35)
}

/* ---- Tablet ---- */
@media(max-width:992px) {
  .lk-property-carousel {
    height: clamp(340px, 46vh, 500px)
  }

  .lk-property-carousel__panel--prev,
  .lk-property-carousel__panel--next {
    width: 18%
  }

  .lk-property-carousel__panel--main {
    width: 64%
  }

  .lk-property-carousel__arrow--prev {
    left: calc(18% + 10px)
  }

  .lk-property-carousel__arrow--next {
    right: calc(18% + 10px)
  }
}

/* ---- Mobile: single image only ---- */
@media(max-width:640px) {
  .lk-property-carousel {
    height: clamp(260px, 60vw, 400px)
  }

  .lk-property-carousel__panel--prev,
  .lk-property-carousel__panel--next {
    display: none
  }

  .lk-property-carousel__panel--main {
    width: 100%
  }

  .lk-property-carousel__arrow--prev {
    left: 14px
  }

  .lk-property-carousel__arrow--next {
    right: 14px
  }

  .lk-property-carousel .lk-breadcrumbs-overlay {
    top: 16px;
    width: calc(100% - 28px);
    padding: 10px 14px;
    border-radius: 18px;
    font-size: .82rem
  }
}

/* 2026-06-21 property detail gallery: reference-style hero grid */
.lk-property-detail-realhomes .lk-property-carousel {
  width: auto;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 2.65fr) minmax(260px, 1fr);
  gap: 16px;
  height: auto;
  min-height: 0;
  background: transparent;
  overflow: visible
}

.lk-property-detail-realhomes .lk-property-carousel__panel {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(17, 27, 58, .1)
}

.lk-property-detail-realhomes .lk-property-carousel__panel--main {
  width: auto;
  max-width: 100%;
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 1.9;
  cursor: zoom-in
}

.lk-property-detail-realhomes .lk-property-carousel__panel--main:hover img {
  transform: scale(1.015);
  filter: brightness(1.03)
}

.lk-property-detail-realhomes .lk-property-carousel__thumbs {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-height: 0
}

.lk-property-detail-realhomes .lk-property-carousel__thumb {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #f6f2eb;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(17, 27, 58, .09)
}

.lk-property-detail-realhomes .lk-property-carousel__thumb img,
.lk-property-detail-realhomes .lk-property-carousel__panel img,
.lk-property-detail-realhomes .lk-property-carousel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .24s ease, filter .24s ease;
  -webkit-user-select: none;
  user-select: none
}

.lk-property-detail-realhomes .lk-property-carousel__video {
  background: #0b1226
}

.lk-property-detail-realhomes .lk-property-carousel__thumb .lk-property-carousel__video {
  pointer-events: none
}

.lk-property-detail-realhomes .lk-property-carousel__thumb:hover img,
.lk-property-detail-realhomes .lk-property-carousel__thumb.is-active img,
.lk-property-detail-realhomes .lk-property-carousel__thumb:hover .lk-property-carousel__video,
.lk-property-detail-realhomes .lk-property-carousel__thumb.is-active .lk-property-carousel__video {
  transform: scale(1.03);
  filter: brightness(.92)
}

.lk-property-detail-realhomes .lk-property-carousel__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(17, 27, 58, .76);
  box-shadow: 0 12px 32px rgba(17, 27, 58, .24);
  transform: translate(-50%, -50%);
  pointer-events: none
}

.lk-property-detail-realhomes .lk-property-carousel__play::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff
}

.lk-property-detail-realhomes .lk-property-carousel__show-all {
  position: absolute;
  left: 36%;
  bottom: 28px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  max-width: min(330px, calc(100% - 48px));
  padding: 0 26px;
  border: 1px solid rgba(17, 27, 58, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  color: #1e2430;
  box-shadow: 0 16px 46px rgba(17, 27, 58, .2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2
}

.lk-property-detail-realhomes .lk-property-carousel__show-all svg {
  width: 20px;
  height: 20px
}

.lk-property-detail-realhomes .lk-property-carousel__show-all:hover {
  background: #fff;
  transform: translateX(-50%) translateY(-1px)
}

.lk-property-detail-realhomes .lk-property-carousel .lk-breadcrumbs-overlay {
  top: 18px;
  left: 18px;
  transform: none;
  width: auto;
  max-width: min(720px, calc(100% - 36px));
  border-radius: 999px;
  background: rgba(17, 27, 58, .64)
}

@media(max-width:900px) {
  .lk-property-detail-realhomes .lk-property-carousel {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .lk-property-detail-realhomes .lk-property-carousel__panel--main {
    aspect-ratio: 1.45
  }

  .lk-property-detail-realhomes .lk-property-carousel__thumbs {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none
  }

  .lk-property-detail-realhomes .lk-property-carousel__thumb {
    aspect-ratio: 1.55
  }

  .lk-property-detail-realhomes .lk-property-carousel__show-all {
    left: 50%
  }
}

@media(max-width:640px) {
  .lk-property-detail-realhomes .lk-property-carousel {
    margin-bottom: 24px
  }

  .lk-property-detail-realhomes .lk-property-carousel__panel--main {
    aspect-ratio: 1.2;
    border-radius: 12px
  }

  .lk-property-detail-realhomes .lk-property-carousel__thumbs {
    display: none
  }

  .lk-property-detail-realhomes .lk-property-carousel__show-all {
    bottom: 16px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: .88rem
  }

  .lk-property-detail-realhomes .lk-property-carousel .lk-breadcrumbs-overlay {
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    max-width: none;
    border-radius: 14px
  }
}

/* 2026-06-23 property archive card alignment and detail video section */
.lk-property-grid {
  align-items: stretch
}

.lk-property-card {
  height: 100%
}

.lk-property-card-body {
  height: 100%
}

.lk-property-card-price {
  display: grid;
  align-content: start;
  min-height: 64px;
  margin-top: 2px
}

.lk-property-video-section {
  display: grid;
  gap: 22px;
  margin: 0 0 34px;
  padding: clamp(24px, 3.4vw, 44px);
  border: 1px solid rgba(17, 27, 58, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 27, 58, .1)
}

.lk-property-video-section__head {
  display: grid;
  gap: 8px;
  max-width: 760px
}

.lk-property-video-section__head .lk-eyebrow,
.lk-property-video-section__head h2 {
  margin: 0
}

.lk-property-video-section__head h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05
}

.lk-property-video-section__head p:not(.lk-eyebrow) {
  margin: 0;
  color: #596071;
  font-size: clamp(1rem, 1.25vw, 1.18rem)
}

.lk-property-video-section__main {
  overflow: hidden;
  border-radius: 14px;
  background: #0b1226;
  box-shadow: 0 16px 46px rgba(17, 27, 58, .16)
}

.lk-property-video-section__main .lk-property-carousel__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #0b1226
}

.lk-property-video-section__rail-wrap {
  position: relative;
  min-width: 0
}

.lk-property-video-section__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 2px 58px 4px 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none
}

.lk-property-video-section__rail::-webkit-scrollbar {
  display: none
}

.lk-property-video-section__thumb {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
  padding: 0;
  border: 4px solid transparent;
  border-radius: 12px;
  background: #0b1226;
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: 0 12px 30px rgba(17, 27, 58, .11);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease
}

.lk-property-video-section__thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(200, 168, 90, .26)
}

.lk-property-video-section__thumb:hover {
  transform: translateY(-2px)
}

.lk-property-video-section__thumb .lk-property-carousel__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #0b1226
}

.lk-property-video-section__play,
.lk-property-video-section__thumb-label {
  position: absolute;
  z-index: 2;
  pointer-events: none
}

.lk-property-video-section__play {
  left: 18px;
  bottom: 18px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35))
}

.lk-property-video-section__thumb-label {
  left: 44px;
  bottom: 16px;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .46)
}

.lk-property-video-section__next {
  position: absolute;
  right: -24px;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 36px rgba(17, 27, 58, .18);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
  transition: transform .2s ease, color .2s ease
}

.lk-property-video-section__next[hidden] {
  display: none
}

.lk-property-video-section__next:hover {
  color: var(--gold);
  transform: translateY(-50%) translateX(2px)
}

@media(min-width:769px) {
  .lk-property-card h3 {
    min-height: 2.7em
  }
}

@media(max-width:768px) {
  .lk-property-video-section {
    padding: 20px;
    border-radius: 16px
  }

  .lk-property-video-section__rail {
    grid-auto-columns: minmax(210px, 78%);
    gap: 12px;
    padding-right: 0
  }

  .lk-property-video-section__next {
    display: none
  }
}
