/*
 * Web Míša – one-page presentation
 * Scoped under .mk-site to minimize collisions with the active WordPress theme.
 */
:root {
  --mk-navy: #0d2339;
  --mk-navy-2: #17314d;
  --mk-navy-3: #234661;
  --mk-gold: #c9a466;
  --mk-gold-dark: #a9854d;
  --mk-cream: #f3ede5;
  --mk-ivory: #fbf8f3;
  --mk-white: #ffffff;
  --mk-ink: #142231;
  --mk-muted: #66717c;
  --mk-line: rgba(20, 34, 49, 0.13);
  --mk-light-line: rgba(255, 255, 255, 0.18);
  --mk-shadow: 0 24px 70px rgba(13, 35, 57, 0.13);
  --mk-shadow-soft: 0 14px 42px rgba(13, 35, 57, 0.08);
  --mk-radius: 22px;
  --mk-container: 1280px;
  --mk-header-h: 92px;
}

.mk-onepage-active .entry-title,
.mk-onepage-active .wp-block-post-title,
.mk-onepage-active .page-header,
.mk-onepage-active .post-thumbnail {
  display: none !important;
}

.mk-onepage-active .site-main,
.mk-onepage-active main,
.mk-onepage-active .entry-content,
.mk-onepage-active .wp-site-blocks {
  margin-top: 0;
}

.mk-site,
.mk-site * {
  box-sizing: border-box;
}

.mk-site {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow: clip;
  color: var(--mk-ink);
  background: var(--mk-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.mk-site a {
  color: inherit;
  text-decoration: none;
}

.mk-site button,
.mk-site input,
.mk-site textarea,
.mk-site select {
  font: inherit;
}

.mk-site h1,
.mk-site h2,
.mk-site h3,
.mk-site p,
.mk-site ul,
.mk-site blockquote {
  margin-top: 0;
}

.mk-site h1,
.mk-site h2 {
  color: var(--mk-navy);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.mk-site h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.2vw, 4.75rem);
}

.mk-site h3 {
  color: var(--mk-navy);
  font-size: 1.04rem;
  line-height: 1.4;
}

.mk-container {
  width: min(calc(100% - 48px), var(--mk-container));
  margin-inline: auto;
}

.mk-section {
  position: relative;
  padding: 118px 0;
}

.mk-eyebrow {
  margin-bottom: 18px;
  color: var(--mk-gold-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mk-eyebrow--light {
  color: #e1c48f;
}

.mk-gold {
  color: var(--mk-gold);
}

.mk-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mk-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 27px;
  border: 1px solid var(--mk-gold);
  border-radius: 2px;
  color: #fff !important;
  background: var(--mk-gold);
  box-shadow: 0 10px 25px rgba(169, 133, 77, 0.16);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mk-button:hover,
.mk-button:focus-visible {
  color: #fff !important;
  background: var(--mk-gold-dark);
  border-color: var(--mk-gold-dark);
  box-shadow: 0 14px 34px rgba(169, 133, 77, 0.24);
  transform: translateY(-2px);
}

.mk-button--outline {
  color: var(--mk-navy) !important;
  background: transparent;
  border-color: var(--mk-navy);
  box-shadow: none;
}

.mk-button--outline:hover,
.mk-button--outline:focus-visible {
  color: #fff !important;
  background: var(--mk-navy);
  border-color: var(--mk-navy);
}

.mk-button--light {
  color: var(--mk-navy) !important;
  background: #fff;
  border-color: #fff;
}

.mk-button--light:hover,
.mk-button--light:focus-visible {
  color: #fff !important;
  background: var(--mk-gold);
  border-color: var(--mk-gold);
}

.mk-button--small {
  min-height: 44px;
  padding: 11px 20px;
  font-size: 0.68rem;
}

.mk-progress {
  position: fixed;
  z-index: 1003;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.mk-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--mk-gold);
}

/* Header */
.mk-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.mk-header.is-scrolled {
  position: fixed;
  background: rgba(251, 248, 243, 0.91);
  box-shadow: 0 10px 36px rgba(13, 35, 57, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mk-header__inner {
  display: flex;
  min-height: var(--mk-header-h);
  align-items: center;
  gap: 32px;
}

.mk-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.mk-brand img {
  width: 49px;
  height: auto;
}

.mk-brand__text {
  display: flex;
  flex-direction: column;
  color: var(--mk-navy);
  line-height: 1.25;
}

.mk-brand__text strong {
  font-size: 0.91rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mk-brand__text small {
  max-width: 175px;
  margin-top: 4px;
  color: #596573;
  font-size: 0.54rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mk-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  margin-left: auto;
}

.mk-nav a {
  position: relative;
  color: var(--mk-navy);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mk-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--mk-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.mk-nav a:hover::after,
.mk-nav a:focus-visible::after,
.mk-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mk-menu-toggle {
  display: none;
}

/* Hero */
.mk-hero {
  position: relative;
  min-height: 860px;
  padding-top: var(--mk-header-h);
  background: linear-gradient(90deg, #fbf8f3 0%, #fbf8f3 47%, #ede5db 100%);
}

.mk-hero__grid {
  display: grid;
  min-height: calc(860px - var(--mk-header-h));
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: stretch;
}

.mk-hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  max-width: 610px;
  flex-direction: column;
  justify-content: center;
  padding: 82px 30px 88px 0;
}

.mk-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(4.25rem, 6.7vw, 7.15rem);
}

.mk-hero h1 > span {
  display: block;
}

.mk-hero h1 .mk-gold {
  display: inline;
}

.mk-hero__lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: #4b5864;
  font-size: 1rem;
  line-height: 1.78;
}

.mk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mk-hero__benefits {
  display: grid;
  padding: 0;
  margin: 52px 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.mk-hero__benefits li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding-right: 12px;
  color: #384755;
  font-size: 0.67rem;
  line-height: 1.45;
}

.mk-hero__benefits li + li {
  padding-left: 14px;
  border-left: 1px solid var(--mk-line);
}

.mk-hero__benefits img {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
}

.mk-hero__visual {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.mk-hero__picture,
.mk-hero__picture img {
  width: 100%;
  height: 100%;
}

.mk-hero__picture img {
  object-fit: cover;
  object-position: 58% 32%;
}

.mk-hero__wash {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 -2px;
  width: 34%;
  background: linear-gradient(90deg, #fbf8f3 2%, rgba(251, 248, 243, 0.84) 30%, rgba(251, 248, 243, 0));
  pointer-events: none;
}

.mk-quote-card {
  position: absolute;
  z-index: 5;
  right: -1px;
  bottom: 92px;
  width: min(310px, 46%);
  padding: 32px 31px;
  margin: 0;
  color: #fff;
  background: rgba(13, 35, 57, 0.96);
  box-shadow: var(--mk-shadow);
}

.mk-quote-card img {
  width: 28px;
  margin-bottom: 17px;
  filter: sepia(1) saturate(0.7) brightness(1.5);
}

.mk-quote-card p {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.55;
}

.mk-quote-card cite {
  color: #d8b777;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
}

.mk-hero__decor--dots {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: max(12px, calc((100vw - var(--mk-container)) / 2 - 45px));
  width: 96px;
  height: 96px;
  background: url("../icons/dot-pattern.svg") center/cover no-repeat;
  opacity: 0.62;
}

.mk-scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 25px;
  left: 50%;
  display: flex;
  width: 32px;
  height: 49px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 35, 57, 0.28);
  border-radius: 18px;
  transform: translateX(-50%);
}

.mk-scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 10px;
  background: var(--mk-gold);
  animation: mk-scroll-cue 1.8s ease-in-out infinite;
}

@keyframes mk-scroll-cue {
  0%, 100% { opacity: 0.25; transform: translateY(-6px); }
  50% { opacity: 1; transform: translateY(7px); }
}

/* Trust strip */
.mk-trust {
  padding: 38px 0 42px;
  border-top: 1px solid rgba(201, 164, 102, 0.23);
  border-bottom: 1px solid var(--mk-line);
  background: #fff;
}

.mk-trust__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 29px;
  color: #3b4650;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.mk-trust__title span {
  width: 34px;
  height: 1px;
  background: var(--mk-gold);
}

.mk-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mk-trust__item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 24px;
}

.mk-trust__item + .mk-trust__item {
  border-left: 1px solid var(--mk-line);
}

.mk-trust__item img {
  width: 39px;
  height: 39px;
}

.mk-trust__item div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mk-trust__item strong {
  color: var(--mk-navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.18;
}

.mk-trust__item span {
  margin-top: 4px;
  color: #6a737b;
  font-size: 0.67rem;
  line-height: 1.35;
}

/* Services */
.mk-services {
  background: var(--mk-ivory);
}

.mk-services__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(0, 1.54fr);
  gap: clamp(48px, 7vw, 105px);
  align-items: start;
}

.mk-section-intro {
  position: sticky;
  top: calc(var(--mk-header-h) + 36px);
}

.mk-section-intro h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.7rem);
}

.mk-section-intro > p:not(.mk-eyebrow) {
  margin-bottom: 30px;
  color: var(--mk-muted);
}

.mk-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mk-service-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 30px 27px;
  border: 1px solid var(--mk-line);
  background: rgba(255, 255, 255, 0.8);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.mk-service-card::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  content: "";
  background: var(--mk-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.mk-service-card:hover {
  border-color: rgba(201, 164, 102, 0.5);
  box-shadow: var(--mk-shadow-soft);
  transform: translateY(-5px);
}

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

.mk-service-card > img {
  width: 43px;
  height: 43px;
  margin-bottom: 24px;
}

.mk-service-card h3 {
  min-height: 48px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.mk-service-card p {
  margin-bottom: 22px;
  color: #68737d;
  font-size: 0.79rem;
  line-height: 1.72;
}

.mk-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--mk-gold-dark);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mk-service-card a span {
  transition: transform 200ms ease;
}

.mk-service-card a:hover span {
  transform: translateX(4px);
}

/* Integrated dark section */
.mk-integrated {
  position: relative;
  padding: 112px 0 108px;
  overflow: hidden;
  color: #fff;
  background: var(--mk-navy);
}

.mk-integrated__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 10vw, 155px);
  align-items: center;
}

.mk-integrated h2 {
  margin: 0;
  color: #fff;
}

.mk-integrated__grid > div:last-child {
  padding-left: 42px;
  border-left: 1px solid var(--mk-light-line);
}

.mk-integrated__grid > div:last-child p {
  color: rgba(255, 255, 255, 0.75);
}

.mk-integrated__grid > div:last-child p:last-child {
  margin-bottom: 0;
}

.mk-integrated__dots {
  position: absolute;
  top: 32px;
  right: 3vw;
  width: 150px;
  height: 150px;
  background: url("../icons/dot-pattern.svg") center/cover no-repeat;
  opacity: 0.22;
}

.mk-journey {
  position: relative;
  display: grid;
  margin-top: 86px;
  grid-template-columns: repeat(6, 1fr);
}

.mk-journey__line {
  position: absolute;
  top: 30px;
  right: 8.4%;
  left: 8.4%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.mk-journey__line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--mk-gold);
}

.mk-journey__step {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
  text-align: center;
}

.mk-journey__step > span {
  display: grid;
  width: 61px;
  height: 61px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: var(--mk-navy);
}

.mk-journey__step img {
  width: 27px;
  height: 27px;
  filter: brightness(0) invert(1) sepia(0.2);
}

.mk-journey__step strong {
  max-width: 125px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

/* Process */
.mk-process {
  background: #fff;
}

.mk-heading-center {
  max-width: 825px;
  margin: 0 auto 66px;
  text-align: center;
}

.mk-heading-center > p:not(.mk-eyebrow) {
  color: var(--mk-muted);
}

.mk-heading-center--light h2 {
  color: #fff;
}

.mk-heading-center--light > p:not(.mk-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.mk-process__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.mk-process__progress {
  position: absolute;
  top: 24px;
  right: 9.5%;
  left: 9.5%;
  height: 1px;
  background: var(--mk-line);
}

.mk-process__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--mk-gold);
}

.mk-process__item {
  position: relative;
  z-index: 2;
  padding-top: 1px;
  text-align: center;
}

.mk-process__number {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 25px;
  place-items: center;
  border: 1px solid var(--mk-gold);
  border-radius: 50%;
  color: var(--mk-gold-dark);
  background: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.mk-process__item h3 {
  min-height: 53px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.mk-process__item p {
  color: var(--mk-muted);
  font-size: 0.75rem;
  line-height: 1.72;
}

/* Split real-estate section */
.mk-real-estate {
  background: var(--mk-ivory);
}

.mk-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: center;
}

.mk-split__media {
  position: relative;
  height: 720px;
}

.mk-split__picture,
.mk-split__picture img {
  width: 100%;
  height: 100%;
}

.mk-split__picture img {
  object-fit: cover;
  object-position: center 30%;
}

.mk-split__media::before {
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -22px;
  width: 58%;
  height: 58%;
  content: "";
  border: 1px solid var(--mk-gold);
}

.mk-image-badge {
  position: absolute;
  right: -34px;
  bottom: 50px;
  display: flex;
  padding: 22px 26px;
  flex-direction: column;
  color: #fff;
  background: var(--mk-navy);
  box-shadow: var(--mk-shadow);
}

.mk-image-badge strong {
  color: var(--mk-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.mk-image-badge span {
  font-size: 0.68rem;
}

.mk-split__content > p:not(.mk-eyebrow) {
  color: var(--mk-muted);
}

.mk-accordion-list {
  margin: 30px 0 35px;
  border-top: 1px solid var(--mk-line);
}

.mk-accordion-list details,
.mk-faq__items details {
  border-bottom: 1px solid var(--mk-line);
}

.mk-accordion-list summary,
.mk-faq__items summary {
  position: relative;
  padding: 20px 42px 20px 0;
  color: var(--mk-navy);
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 600;
  list-style: none;
}

.mk-accordion-list summary::-webkit-details-marker,
.mk-faq__items summary::-webkit-details-marker {
  display: none;
}

.mk-accordion-list summary::after,
.mk-faq__items summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 22px;
  height: 22px;
  content: "+";
  color: var(--mk-gold-dark);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  transform: translateY(-50%);
}

.mk-accordion-list details[open] summary::after,
.mk-faq__items details[open] summary::after {
  content: "−";
}

.mk-accordion-list details p,
.mk-faq__items details p {
  padding: 0 28px 21px 0;
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.79rem;
}

/* Finance */
.mk-finance {
  overflow: hidden;
  background: #efe6da;
}

.mk-finance__shape {
  position: absolute;
  top: -130px;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 164, 102, 0.38);
  border-radius: 50%;
}

.mk-finance__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  gap: clamp(60px, 9vw, 135px);
  align-items: center;
}

.mk-finance__content {
  position: relative;
  z-index: 2;
}

.mk-finance__content > p:not(.mk-eyebrow) {
  color: #5c6670;
}

.mk-check-list {
  padding: 0;
  margin: 28px 0 36px;
  list-style: none;
}

.mk-check-list li {
  position: relative;
  padding: 12px 0 12px 35px;
  border-bottom: 1px solid rgba(20, 34, 49, 0.1);
  color: #394956;
  font-size: 0.83rem;
}

.mk-check-list li::before {
  position: absolute;
  top: 15px;
  left: 2px;
  width: 18px;
  height: 18px;
  content: "✓";
  border: 1px solid var(--mk-gold);
  border-radius: 50%;
  color: var(--mk-gold-dark);
  font-size: 0.66rem;
  line-height: 16px;
  text-align: center;
}

.mk-finance__media {
  position: relative;
  height: 660px;
}

.mk-finance__picture,
.mk-finance__picture img {
  width: 100%;
  height: 100%;
}

.mk-finance__picture img {
  object-fit: cover;
  object-position: center 22%;
}

.mk-finance__media::after {
  position: absolute;
  top: 30px;
  right: -32px;
  width: 118px;
  height: 118px;
  content: "";
  background: url("../icons/ring.svg") center/cover no-repeat;
}

/* Protection */
.mk-protection {
  padding: 116px 0;
  color: #fff;
  background: linear-gradient(145deg, var(--mk-navy), #123451);
}

.mk-protection__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mk-protection__grid article {
  min-height: 275px;
  padding: 34px 27px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.mk-protection__grid article:hover {
  border-color: rgba(201, 164, 102, 0.7);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-4px);
}

.mk-protection__grid img {
  width: 41px;
  height: 41px;
  padding: 8px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #fff;
}

.mk-protection__grid h3 {
  color: #fff;
}

.mk-protection__grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.77rem;
}

.mk-center-action {
  margin-top: 42px;
  text-align: center;
}

/* Scenarios */
.mk-scenarios {
  background: #fff;
}

.mk-scenarios__grid,
.mk-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mk-scenarios__grid article,
.mk-principle-card {
  position: relative;
  min-height: 290px;
  padding: 36px 32px;
  border: 1px solid var(--mk-line);
  background: #fff;
  box-shadow: 0 12px 36px rgba(13, 35, 57, 0.035);
}

.mk-scenarios__grid article > span,
.mk-principle-card > span {
  display: block;
  margin-bottom: 55px;
  color: var(--mk-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
}

.mk-scenarios__grid article::after,
.mk-principle-card::after {
  position: absolute;
  top: 70px;
  left: 32px;
  width: 45px;
  height: 1px;
  content: "";
  background: var(--mk-gold);
}

.mk-scenarios__grid h3,
.mk-principle-card h3 {
  margin-bottom: 13px;
  font-size: 1.05rem;
}

.mk-scenarios__grid p,
.mk-principle-card p {
  margin-bottom: 0;
  color: var(--mk-muted);
  font-size: 0.79rem;
}

/* About */
.mk-about {
  color: #fff;
  background: var(--mk-navy);
}

.mk-about__grid {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
}

.mk-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 70px 100px 0;
}

.mk-about h2 {
  color: #fff;
  font-size: clamp(3rem, 5vw, 5rem);
}

.mk-about__content > p {
  color: rgba(255, 255, 255, 0.7);
}

.mk-about blockquote {
  padding: 23px 0 0 25px;
  margin: 19px 0 13px;
  border-left: 1px solid var(--mk-gold);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.65;
}

.mk-about cite {
  color: var(--mk-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

.mk-about__media {
  min-width: 50vw;
  margin-right: calc((100vw - min(calc(100vw - 48px), var(--mk-container))) / -2);
}

.mk-about__picture,
.mk-about__picture img {
  width: 100%;
  height: 100%;
}

.mk-about__picture img {
  object-fit: cover;
  object-position: center 28%;
}

/* References / principles */
.mk-references {
  background: var(--mk-ivory);
}

.mk-reference-card {
  position: relative;
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 38px 34px 30px;
  margin: 0;
  border: 1px solid var(--mk-line);
  background: #fff;
}

.mk-reference-card > img {
  width: 25px;
  height: 25px;
  margin-bottom: 25px;
  filter: sepia(1) saturate(0.7);
}

.mk-reference-card > p {
  color: #43515c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.01rem;
  line-height: 1.7;
}

.mk-reference-card footer {
  display: flex;
  margin-top: auto;
  flex-direction: column;
  padding-top: 20px;
  border-top: 1px solid var(--mk-line);
}

.mk-reference-card footer strong {
  color: var(--mk-navy);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.mk-reference-card footer span {
  color: var(--mk-muted);
  font-size: 0.67rem;
}

/* FAQ */
.mk-faq {
  background: #fff;
}

.mk-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.mk-faq__items {
  border-top: 1px solid var(--mk-line);
}

.mk-faq__items summary {
  padding-block: 23px;
  font-size: 0.96rem;
}

/* Contact */
.mk-contact {
  position: relative;
  min-height: 850px;
  padding: 116px 0;
  overflow: hidden;
  color: #fff;
  background: var(--mk-navy);
}

.mk-contact__media,
.mk-contact__overlay {
  position: absolute;
  inset: 0;
}

.mk-contact__picture,
.mk-contact__picture img {
  width: 100%;
  height: 100%;
}

.mk-contact__picture img {
  object-fit: cover;
  object-position: 76% 34%;
}

.mk-contact__overlay {
  background: linear-gradient(90deg, rgba(13, 35, 57, 0.98) 0%, rgba(13, 35, 57, 0.94) 43%, rgba(13, 35, 57, 0.56) 73%, rgba(13, 35, 57, 0.35) 100%);
}

.mk-contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 0.67fr);
  gap: clamp(60px, 9vw, 135px);
  align-items: center;
}

.mk-contact__intro h2 {
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
}

.mk-contact__intro > p:not(.mk-eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.73);
}

.mk-contact__details {
  padding: 0;
  margin: 35px 0 0;
  list-style: none;
}

.mk-contact__details li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.mk-contact__details img {
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
}

.mk-contact-form {
  position: relative;
  display: grid;
  padding: 42px;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(13, 35, 57, 0.82);
  box-shadow: var(--mk-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mk-contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.mk-contact-form input,
.mk-contact-form select,
.mk-contact-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.82rem;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.mk-contact-form select option {
  color: var(--mk-ink);
  background: #fff;
}

.mk-contact-form textarea {
  min-height: 105px;
  resize: vertical;
}

.mk-contact-form input:focus,
.mk-contact-form select:focus,
.mk-contact-form textarea:focus {
  border-color: var(--mk-gold);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(201, 164, 102, 0.13);
}

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

.mk-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.mk-consent input {
  width: 16px;
  min-height: 16px;
  flex: 0 0 16px;
  padding: 0;
  margin-top: 2px;
  accent-color: var(--mk-gold);
}

.mk-form-submit {
  width: 100%;
  margin-top: 3px;
  cursor: pointer;
}

.mk-form-submit.is-loading {
  cursor: wait;
  opacity: 0.72;
}

.mk-form-status {
  display: none;
  padding: 10px 12px;
  font-size: 0.74rem;
  line-height: 1.45;
}

.mk-form-status.is-success,
.mk-form-status.is-error {
  display: block;
}

.mk-form-status.is-success {
  border: 1px solid rgba(116, 205, 154, 0.45);
  color: #bff0d0;
  background: rgba(60, 143, 93, 0.14);
}

.mk-form-status.is-error {
  border: 1px solid rgba(240, 130, 130, 0.45);
  color: #ffd3d3;
  background: rgba(169, 54, 54, 0.14);
}

.mk-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Footer */
.mk-footer {
  padding: 64px 0 25px;
  background: #fff;
}

.mk-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 48px;
  padding-bottom: 42px;
}

.mk-footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.mk-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.mk-footer__brand > img {
  width: 66px;
}

.mk-footer__brand > div {
  display: flex;
  flex-direction: column;
}

.mk-footer__brand strong {
  color: var(--mk-navy);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.mk-footer__brand span,
.mk-footer__grid a,
.mk-footer__grid > div > span {
  color: var(--mk-muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

.mk-footer__grid h3 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-footer__grid a:hover {
  color: var(--mk-gold-dark);
}

.mk-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--mk-line);
  color: #7b838a;
  font-size: 0.61rem;
  line-height: 1.55;
}

.mk-footer__bottom span:last-child {
  max-width: 720px;
  text-align: right;
}

/* Reveal animations */
@media (prefers-reduced-motion: no-preference) {
  .mk-site.mk-enhanced [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 720ms cubic-bezier(.2,.75,.2,1), transform 720ms cubic-bezier(.2,.75,.2,1);
    transition-delay: var(--mk-reveal-delay, 0ms);
  }

  .mk-site.mk-enhanced [data-reveal="clip"] {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
    transform: none;
    transition: clip-path 900ms cubic-bezier(.2,.75,.2,1);
    transition-delay: var(--mk-reveal-delay, 0ms);
  }

  .mk-site.mk-enhanced [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mk-site.mk-enhanced [data-reveal="clip"].is-visible {
    clip-path: inset(0 0 0 0);
  }
}

/* Focus */
.mk-site a:focus-visible,
.mk-site button:focus-visible,
.mk-site summary:focus-visible,
.mk-site input:focus-visible,
.mk-site textarea:focus-visible,
.mk-site select:focus-visible {
  outline: 3px solid rgba(201, 164, 102, 0.48);
  outline-offset: 3px;
}

/* Tablet */
@media (max-width: 1120px) {
  :root { --mk-header-h: 82px; }
  .mk-header__cta { display: none; }
  .mk-nav { gap: 18px; }
  .mk-hero { min-height: 780px; }
  .mk-hero__grid { min-height: calc(780px - var(--mk-header-h)); grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr); }
  .mk-hero h1 { font-size: clamp(4rem, 7.3vw, 6rem); }
  .mk-hero__benefits { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .mk-hero__benefits li:nth-child(3) { padding-left: 0; border-left: 0; }
  .mk-services__layout { grid-template-columns: 1fr; }
  .mk-section-intro { position: static; max-width: 690px; }
  .mk-services__grid { grid-template-columns: repeat(3, 1fr); }
  .mk-process__grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .mk-process__progress { display: none; }
  .mk-split__media { height: 650px; }
  .mk-finance__grid { grid-template-columns: 1fr 0.8fr; gap: 60px; }
  .mk-protection__grid { grid-template-columns: repeat(2, 1fr); }
  .mk-contact__grid { grid-template-columns: 1fr 0.85fr; gap: 55px; }
}

/* Mobile navigation and one-column layouts */
@media (max-width: 900px) {
  .mk-container { width: min(calc(100% - 36px), var(--mk-container)); }
  .mk-section { padding: 88px 0; }
  .mk-header { position: absolute; }
  .mk-header.is-scrolled { position: fixed; }
  .mk-header__inner { min-height: var(--mk-header-h); }
  .mk-brand__text small { display: none; }
  .mk-menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 43px;
    height: 43px;
    padding: 10px;
    margin-left: auto;
    border: 1px solid rgba(13, 35, 57, 0.22);
    border-radius: 0;
    place-content: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
  }
  .mk-menu-toggle span:not(.mk-sr-only) { display: block; width: 21px; height: 1px; background: var(--mk-navy); transition: transform 220ms ease, opacity 220ms ease; }
  .mk-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mk-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mk-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mk-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
    padding: 110px 32px 45px;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(251, 248, 243, 0.98);
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }
  .mk-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .mk-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--mk-line); font-family: "Playfair Display", Georgia, serif; font-size: 1.55rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .mk-nav a::after { display: none; }
  .mk-hero { min-height: 0; padding-top: var(--mk-header-h); }
  .mk-hero__grid { min-height: 0; grid-template-columns: 1fr; }
  .mk-hero__content { max-width: none; padding: 70px 0 52px; }
  .mk-hero h1 { font-size: clamp(3.7rem, 13vw, 6rem); }
  .mk-hero__visual { height: 690px; margin-inline: -18px; }
  .mk-hero__wash { top: -2px; right: 0; bottom: auto; left: 0; width: 100%; height: 22%; background: linear-gradient(180deg, #fbf8f3 0%, rgba(251, 248, 243, 0)); }
  .mk-quote-card { right: 18px; bottom: 30px; width: min(310px, calc(100% - 36px)); }
  .mk-scroll-cue { display: none; }
  .mk-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .mk-trust__item:nth-child(3) { border-left: 0; }
  .mk-trust__item:nth-child(n+3) { padding-top: 25px; margin-top: 18px; border-top: 1px solid var(--mk-line); }
  .mk-services__grid { grid-template-columns: repeat(2, 1fr); }
  .mk-integrated__grid { grid-template-columns: 1fr; gap: 35px; }
  .mk-integrated__grid > div:last-child { padding: 0; border-left: 0; }
  .mk-journey { grid-template-columns: repeat(3, 1fr); gap: 36px 15px; }
  .mk-journey__line { display: none; }
  .mk-process__grid { grid-template-columns: repeat(2, 1fr); }
  .mk-split { grid-template-columns: 1fr; }
  .mk-split__media { height: 700px; }
  .mk-split__content { max-width: 700px; }
  .mk-finance__grid { grid-template-columns: 1fr; }
  .mk-finance__media { height: 690px; max-width: 680px; }
  .mk-scenarios__grid, .mk-reference-grid { grid-template-columns: 1fr; }
  .mk-about__grid { min-height: 0; grid-template-columns: 1fr; }
  .mk-about__content { padding: 88px 0 65px; }
  .mk-about__media { min-width: 0; height: 700px; margin: 0 -18px; }
  .mk-faq__grid { grid-template-columns: 1fr; gap: 45px; }
  .mk-contact { padding: 90px 0; }
  .mk-contact__overlay { background: rgba(13, 35, 57, 0.88); }
  .mk-contact__picture img { object-position: 68% 35%; }
  .mk-contact__grid { grid-template-columns: 1fr; }
  .mk-contact__intro { max-width: 680px; }
  .mk-contact-form { max-width: 680px; }
  .mk-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  :root { --mk-header-h: 74px; }
  .mk-container { width: min(calc(100% - 32px), var(--mk-container)); }
  .mk-site { font-size: 15px; }
  .mk-section { padding: 74px 0; }
  .mk-brand img { width: 43px; }
  .mk-brand__text strong { font-size: 0.76rem; }
  .mk-hero__content { padding: 54px 0 42px; }
  .mk-hero h1 { margin-bottom: 22px; font-size: clamp(3.35rem, 16vw, 4.6rem); }
  .mk-hero__lead { font-size: 0.92rem; }
  .mk-actions { display: grid; grid-template-columns: 1fr; }
  .mk-button { width: 100%; }
  .mk-hero__benefits { margin-top: 38px; grid-template-columns: 1fr 1fr; }
  .mk-hero__benefits li { align-items: flex-start; padding: 10px 8px 10px 0; }
  .mk-hero__benefits li:nth-child(even) { padding-left: 12px; border-left: 1px solid var(--mk-line); }
  .mk-hero__benefits li:nth-child(3) { padding-left: 0; border-left: 0; }
  .mk-hero__visual { height: 570px; margin-inline: -16px; }
  .mk-hero__picture img { object-position: 58% 25%; }
  .mk-quote-card { right: 16px; bottom: 18px; width: calc(100% - 32px); padding: 25px; }
  .mk-quote-card p { font-size: 1.04rem; }
  .mk-trust { padding: 33px 0; }
  .mk-trust__title { align-items: center; gap: 12px; font-size: 0.67rem; }
  .mk-trust__title span { width: 20px; }
  .mk-trust__grid { grid-template-columns: 1fr; }
  .mk-trust__item { justify-content: flex-start; padding: 17px 8px; }
  .mk-trust__item + .mk-trust__item, .mk-trust__item:nth-child(3) { margin: 0; border-top: 1px solid var(--mk-line); border-left: 0; }
  .mk-trust__item strong { font-size: 1.2rem; }
  .mk-services__grid { grid-template-columns: 1fr; }
  .mk-service-card { min-height: 0; padding: 30px 26px; }
  .mk-service-card h3 { min-height: 0; }
  .mk-integrated { padding: 78px 0; }
  .mk-journey { grid-template-columns: repeat(2, 1fr); }
  .mk-process__grid { grid-template-columns: 1fr; gap: 19px; }
  .mk-process__item { padding: 23px 0 23px 75px; text-align: left; border-bottom: 1px solid var(--mk-line); }
  .mk-process__number { position: absolute; top: 22px; left: 0; margin: 0; }
  .mk-process__item h3 { min-height: 0; }
  .mk-split__media { height: 560px; }
  .mk-image-badge { right: 0; bottom: 20px; }
  .mk-finance__media { height: 560px; }
  .mk-protection { padding: 78px 0; }
  .mk-protection__grid { grid-template-columns: 1fr; }
  .mk-protection__grid article { min-height: 0; }
  .mk-scenarios__grid article, .mk-principle-card { min-height: 0; }
  .mk-about__content { padding: 76px 0 54px; }
  .mk-about__media { height: 540px; margin-inline: -16px; }
  .mk-contact { min-height: 0; padding: 78px 0; }
  .mk-contact__intro h2 { font-size: 3.1rem; }
  .mk-contact-form { padding: 27px 22px; }
  .mk-form-row { grid-template-columns: 1fr; }
  .mk-footer { padding-top: 50px; }
  .mk-footer__grid { grid-template-columns: 1fr; gap: 31px; }
  .mk-footer__bottom { flex-direction: column; gap: 12px; }
  .mk-footer__bottom span:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .mk-site *, .mk-site *::before, .mk-site *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
/* ==========================================================
   OPRAVA ŠÍŘKY OBSAHOVÉHO KONTEJNERU PRO PLUGIN
   ========================================================== */
.entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

.mk-site {
    max-width: 100% !important;
    width: 100% !important;
}