/* Ruach Insurance — shared styles */

:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-card: #141414;
  --bg-card-2: #181818;
  --bg-light: #f3eee6;
  --bg-light-2: #ebe5d8;
  --gold: #d4a857;
  --gold-2: #c9a35c;
  --gold-soft: rgba(212, 168, 87, 0.18);
  --gold-line: rgba(212, 168, 87, 0.35);
  --text: #ffffff;
  --text-dim: #c9c5be;
  --text-mute: #8a857d;
  --text-on-light: #1a1a1a;
  --text-on-light-dim: #6b6b6b;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { background: var(--bg); color: var(--text); }
body {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

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

.serif { font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; }
.script { font-family: 'Allura', 'Great Vibes', cursive; }
.mono-tracked { letter-spacing: 0.14em; text-transform: uppercase; }

/* layout */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 54px;
  height: 60px;
  flex: none;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.logo-text .sub {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--text);
  margin-top: 6px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 50px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 6px 2px;
  font-weight: 500;
}
.nav a.active {
  color: var(--gold);
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}
.nav a:hover:not(.active) { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }

.btn-ghost-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-ghost-gold:hover { background: var(--gold-soft); }

.btn-solid-gold {
  background: var(--gold);
  color: #1a1a1a;
}
.btn-solid-gold:hover { background: var(--gold-2); }

.btn-ghost-white {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.06); }

.btn-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: transparent;
  flex: none;
}
.btn-icon-circle:hover { background: var(--gold-soft); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg);
  padding: 56px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 32px;
}
.footer-col h4 {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col p, .footer-col li {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-col ul li svg {
  color: var(--gold);
  flex: none;
}
.footer-tagline { margin-top: 14px; font-size: 13px; color: var(--text-mute); }
.social-row { display: flex; gap: 12px; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background .2s ease;
}
.social-icon:hover { background: var(--gold-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
  padding: 18px 0;
}
.footer-bottom a { color: var(--gold); }

/* ===== HERO (Domov) ===== */
.hero {
  position: relative;
  padding: clamp(56px, 8vh, 96px) 0;
  overflow: hidden;
  min-height: calc(100svh - 105px);
  display: flex;
  align-items: center;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-image-bg image-slot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
}
.hero-image-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background:
    linear-gradient(to right,
      #0a0a0a 0%,
      rgba(10,10,10,0.96) 24%,
      rgba(10,10,10,0.58) 48%,
      rgba(10,10,10,0.18) 72%
    ),
    linear-gradient(to bottom,
      rgba(10,10,10,0.28) 0%,
      rgba(10,10,10,0.08) 42%,
      rgba(10,10,10,0.58) 100%
    );
  z-index: 1;
  pointer-events: none;
}
.hero > .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text {
  max-width: 560px;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0;
}
.hero h1 .gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero-rule {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0 24px;
}
.hero p.lead {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* DRUHY POISTENIA — home slim version */
.druhy-slim {
  background: var(--bg-light);
  padding: 80px 0 90px;
  color: var(--text-on-light);
}
.druhy-slim h2 {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 60px;
}
.druhy-slim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.druhy-slim-item { text-align: center; }
.druhy-slim-item .icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  color: var(--gold);
}
.druhy-slim-item .icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.druhy-slim-item h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.35;
}
.druhy-slim-item p {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ABOUT BAND (Domov) */
.about-band {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  min-height: 820px;
  display: flex;
  align-items: center;
}
.about-image-bg {
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  background: #0a0a0a;
  z-index: 0;
}
.about-image-bg image-slot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
}
.about-image-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background:
    linear-gradient(to right,
      #0a0a0a 0%,
      rgba(10,10,10,0.94) 14%,
      rgba(10,10,10,0.48) 34%,
      rgba(10,10,10,0.1) 62%,
      transparent 100%
    ),
    linear-gradient(to bottom,
      rgba(10,10,10,0.16) 0%,
      rgba(10,10,10,0.02) 45%,
      rgba(10,10,10,0.42) 100%
    );
  z-index: 1;
  pointer-events: none;
}
.about-band > .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.about-text {
  max-width: 560px;
}
.about-eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-left: 28px;
}
.about-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.about-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 4px;
}
.about-band h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.about-band p {
  color: var(--text-dim);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
}
.signature {
  font-family: 'Allura', cursive;
  font-size: 44px;
  color: var(--gold);
  margin: 22px 0 28px;
  line-height: 1;
}
/* .about-image-wrap replaced by .about-image-bg */

/* ===== Page title (Poistenia, O mne, Kontakt) ===== */
.page-title-section {
  padding: 60px 0 50px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.page-title .gold {
  color: var(--gold);
  font-style: italic;
}
.page-title-center {
  text-align: center;
  font-size: 72px;
  margin-bottom: 24px;
}
.page-shield-divider {
  text-align: center;
  margin: 18px 0 24px;
  color: var(--gold);
}
.page-subtitle-center {
  text-align: center;
  color: var(--text-dim);
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto 64px;
  line-height: 1.7;
}
.page-shield-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 10px;
  color: var(--gold);
}

/* ===== Poistenia cards ===== */
.poistenia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 60px;
}
.pcard {
  background: #0d0d0d;
  border: 1px solid rgba(212,168,87,0.18);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pcard-media {
  position: relative;
  height: clamp(140px, 14vw, 180px);
  overflow: hidden;
}
.pcard-icon-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.pcard-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.pcard-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
}
.pcard-body h3 .gold { color: var(--gold); font-style: italic; }
.pcard-body p.desc {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.pcard-list {
  list-style: none;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pcard-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.pcard-list li svg { color: var(--gold); flex: none; }
.pcard-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pcard .btn { flex: 1; padding: 12px 16px; font-size: 12px; }

/* Poistenia CTA strip */
.cta-strip {
  background: #0d0d0d;
  border: 1px solid rgba(212,168,87,0.22);
  border-radius: 12px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 60px;
}
.cta-strip .shield-big {
  width: 90px;
  height: 100px;
  color: var(--gold);
}
.cta-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 6px;
}
.cta-strip h3 .gold { color: var(--gold); font-style: italic; }
.cta-strip p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.cta-strip .secondary-link {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== O mne ===== */
.omne-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
  min-height: 560px;
}
.omne-image-bg {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  z-index: 0;
}
.omne-image-bg image-slot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
}
.omne-image-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(to right,
    #0a0a0a 0%,
    rgba(10,10,10,0.91) 18%,
    rgba(10,10,10,0.68) 34%,
    rgba(10,10,10,0.34) 58%,
    rgba(10,10,10,0.04) 84%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
.omne-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.omne-title {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.omne-title .gold { color: var(--gold); font-style: normal; }
.omne-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 30px;
}
.omne-divider .line { flex: 1; height: 1px; background: var(--gold-line); max-width: 100px; }
.omne-divider .shield { color: var(--gold); }
.omne-name {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 6px;
}
.omne-company {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
}
.omne-hero p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 520px;
}
/* .omne-portrait replaced by .omne-image-bg */

.omne-values {
  padding: 20px 0 70px;
}
.values-heading {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 500;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 50px;
}
.value-item { text-align: center; width: 110px; }
.value-item .ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}
.value-item span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.4;
}

.omne-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding-bottom: 80px;
}
.dark-card {
  background: #0e0e0e;
  border: 1px solid rgba(212,168,87,0.22);
  border-radius: 12px;
  padding: 36px;
}
.card-heading-center {
  text-align: center;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 26px;
}
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(212,168,87,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.01);
  transition: background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.service-row:hover {
  background: rgba(212,168,87,0.06);
  border-color: rgba(212,168,87,0.4);
}
.service-row .ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: none;
}
.service-row .label {
  flex: 1;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.service-row .arr { color: var(--gold); }

.contact-card-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
}
.contact-line .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: none;
}
.contact-divider { height: 1px; background: rgba(212,168,87,0.18); margin: 4px 0; }
.contact-foot {
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 4px;
}
.watermark-shield {
  position: absolute;
  bottom: -6px;
  right: -6px;
  opacity: 0.18;
  color: var(--gold);
  pointer-events: none;
}

/* ===== KONTAKT ===== */
.kontakt-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
  min-height: 560px;
}
.kontakt-image-bg {
  position: absolute;
  top: 0; right: 0;
  width: 56%;
  height: 100%;
  z-index: 0;
}
.kontakt-image-bg image-slot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
}
.kontakt-image-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(to right,
    #0a0a0a 0%,
    rgba(10,10,10,0.93) 22%,
    rgba(10,10,10,0.55) 55%,
    rgba(10,10,10,0.08) 82%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
.kontakt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.kontakt-info-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}
.kontakt-info-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212,168,87,0.16);
}
.kontakt-info-row:last-child { border-bottom: 0; }
.kontakt-info-row .ic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: none;
}
.kontakt-info-row .text strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.kontakt-info-row .text span {
  color: var(--text-mute);
  font-size: 14px;
}

/* .kontakt-image replaced by .kontakt-image-bg */

.kontakt-forms-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding-bottom: 80px;
}

.form-card { padding: 38px 40px 36px; }
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-card .sub {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 6px;
}
.form-card .sub-line { width: 70px; height: 2px; background: var(--gold); margin-bottom: 22px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #0a0a0a;
  border: 1px solid rgba(212,168,87,0.25);
  border-radius: 8px;
  transition: border-color .2s ease;
}
.form-field:focus-within { border-color: var(--gold); }
.form-field svg { color: var(--gold); flex: none; }
.form-field input,
.form-field textarea {
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  outline: none;
  resize: none;
}
.form-field textarea { min-height: 110px; padding-top: 4px; }
.form-field.select-wrap::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
}
.custom-select {
  overflow: visible;
  z-index: 2;
}
.custom-select.is-open {
  z-index: 20;
}
.custom-select-toggle {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0 24px 0 0;
  background: transparent;
  border: 0;
  color: var(--text-mute);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  line-height: 1.3;
  outline: none;
  text-align: left;
}
.custom-select.has-value .custom-select-toggle {
  color: var(--text);
}
.custom-select-menu {
  position: absolute;
  left: 44px;
  right: 12px;
  top: calc(100% + 8px);
  display: none;
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px;
  background: #171212;
  border: 1px solid rgba(212,168,87,0.42);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.48);
}
.custom-select.is-open .custom-select-menu {
  display: block;
}
.custom-select-menu::-webkit-scrollbar { width: 8px; }
.custom-select-menu::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 999px; }
.custom-select-menu::-webkit-scrollbar-thumb { background: rgba(212,168,87,0.45); border-radius: 999px; }
.custom-select-menu button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  line-height: 1.25;
  outline: none;
  text-align: left;
}
.custom-select-menu button:hover,
.custom-select-menu button:focus-visible {
  background: rgba(212,168,87,0.14);
}
.custom-select-menu button[aria-selected="true"] {
  color: var(--gold);
}
.form-full { margin-bottom: 14px; }
.form-submit {
  width: 100%;
  padding: 16px 24px;
}
.form-foot {
  margin-top: 14px;
  text-align: center;
  color: var(--text-mute);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wa-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.wa-icon-big {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 28px;
}
.wa-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 14px;
}
.wa-card .sub-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 22px; }
.wa-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.wa-card .btn { width: 100%; }
.wa-card .footnote {
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* image-slot custom styling */
image-slot {
  border-radius: 14px;
}
.hero-image-bg image-slot,
.about-image-bg image-slot,
.omne-image-bg image-slot,
.kontakt-image-bg image-slot,
.pcard-media image-slot,
.hero-image-bg img,
.about-image-bg img,
.omne-image-bg img,
.kontakt-image-bg img,
.pcard-media img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
}

/* Позиция фото для конкретных секций */
.hero-image-bg img { object-position: 46% center; filter: brightness(1.28) contrast(1.02); }
.about-image-bg img {
  filter: brightness(1.22) contrast(1.03);
  object-fit: contain;
  object-position: 42% center;
}
.omne-image-bg img { object-position: 58% 38%; filter: brightness(1.68) contrast(1.04) saturate(1.03); }
.kontakt-image-bg img { object-position: 58% center; }
.pcard-media img[src$="card-car.jpg"] { object-position: 45% 44%; }
.pcard-media img[src$="card-house.jpg"] { object-position: 50% 48%; }
.pcard-media img[src$="card-family.jpg"] { object-position: 50% 42%; }
.pcard-media img[src$="card-travel.jpg"] { object-position: 58% 50%; }
.pcard-media img[src$="card-caravan.jpg"] { object-position: 54% 45%; }
.pcard-media img[src$="card-boat.jpg"] { object-position: 56% 48%; }
.pcard-media img[src$="card-plane.jpg"] { object-position: 50% 48%; }
.pcard-media img[src$="card-office.jpg"] { object-position: 50% 46%; }
.pcard-media img[src$="card-land.jpg"] { object-position: 54% 50%; }

/* ===== HOVER ЭФФЕКТЫ НА КАРТОЧКАХ ===== */
.pcard {
  transition: transform 0.32s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.32s cubic-bezier(0.22,0.61,0.36,1),
              border-color 0.32s ease;
  will-change: transform;
}
.pcard:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,87,0.5);
  box-shadow: 0 18px 52px rgba(0,0,0,0.55),
              0 0 0 1px rgba(212,168,87,0.28),
              0 0 32px rgba(212,168,87,0.08);
}

/* Zoom на фото при hover карточки */
.pcard-media {
  overflow: hidden;
}
.pcard-media image-slot,
.pcard-media img {
  transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1);
  transform-origin: center center;
}
.pcard:hover .pcard-media image-slot,
.pcard:hover .pcard-media img {
  transform: scale(1.06);
}

/* ===== HOVER ЭФФЕКТЫ НА HERO / PORTRAIT / HANDSHAKE ===== */
.hero-image-bg image-slot,
.about-image-bg image-slot,
.omne-image-bg image-slot,
.kontakt-image-bg image-slot,
.hero-image-bg img,
.about-image-bg img,
.omne-image-bg img,
.kontakt-image-bg img {
  transition: transform 0.65s cubic-bezier(0.22,0.61,0.36,1);
  transform-origin: center center;
}
.hero-image-bg:hover image-slot,
.omne-image-bg:hover image-slot,
.kontakt-image-bg:hover image-slot,
.hero-image-bg:hover img,
.omne-image-bg:hover img,
.kontakt-image-bg:hover img {
  transform: scale(1.03);
}
/* About-band: subtle zoom without changing the portrait crop. */
.about-image-bg:hover image-slot,
.about-image-bg:hover img {
  transform: scale(1.03);
}

/* ===== SCROLL-FADE (Intersection Observer управляет через JS) ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.75s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.75s cubic-bezier(0.22,0.61,0.36,1);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.75s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.75s cubic-bezier(0.22,0.61,0.36,1);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Задержки для каскадных появлений */
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

/* ===== HERO ENTRANCE ANIMATION ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-eyebrow { animation: heroFadeUp 0.7s 0.1s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero h1      { animation: heroFadeUp 0.75s 0.2s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero-rule    { animation: heroFadeUp 0.6s 0.35s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero p.lead  { animation: heroFadeUp 0.6s 0.45s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero-actions { animation: heroFadeUp 0.6s 0.55s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero-image-bg { animation: heroFadeIn 1.1s 0.2s cubic-bezier(0.22,0.61,0.36,1) both; }

/* ===== GOLD SHINE НА КНОПКАХ ===== */
.btn-solid-gold {
  position: relative;
  overflow: hidden;
}
.btn-solid-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0s;
}
.btn-solid-gold:hover::after {
  left: 160%;
  transition: left 0.45s ease;
}

/* ===== HEADER scroll shadow ===== */
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
  border-bottom-color: rgba(212,168,87,0.12);
}

@media (max-width: 1180px) {
  .wrap { padding: 0 32px; }
  .header-inner { padding: 18px 32px; }
  .nav { gap: 28px; }
  .hero h1 { font-size: 46px; }
  .page-title-center { font-size: 58px; }
  .omne-title { font-size: 72px; }
  .poistenia-grid { gap: 14px; }
  .pcard-body { padding: 18px 18px 20px; }
  .pcard-body h3 { font-size: 20px; }
  .pcard-body p.desc,
  .pcard-list li { font-size: 12.5px; }
  .pcard .btn { padding: 12px 10px; font-size: 11px; letter-spacing: 0.14em; }
  .values-grid { gap: 34px; }
  .kontakt-forms-grid { gap: 18px; }
}

/* responsive — keep designs intact but allow narrower screens */
@media (max-width: 760px) {
  .wrap { padding: 0 24px; }
  .header-inner {
    padding: 16px 24px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .header-inner > .btn { display: none; }
  .logo-mark { width: 44px; height: 49px; }
  .logo-text .name { font-size: 22px; }
  .logo-text .sub { font-size: 10px; letter-spacing: 0.32em; }
  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  .nav a { font-size: 11px; letter-spacing: 0.14em; }
  .hero h1 { font-size: 40px; }
  .hero { padding: 54px 0 60px; min-height: calc(100svh - 118px); }
  .hero-image-bg { width: 100%; }
  .hero-image-bg::before {
    background:
      linear-gradient(to right, #0a0a0a 0%, rgba(10,10,10,0.9) 48%, rgba(10,10,10,0.42) 100%),
      linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.68) 100%);
  }
  .about-image-bg { width: 100%; }
  .about-image-bg::before {
    background:
      linear-gradient(to right, #0a0a0a 0%, rgba(10,10,10,0.88) 48%, rgba(10,10,10,0.34) 100%),
      linear-gradient(to bottom, rgba(10,10,10,0.18) 0%, rgba(10,10,10,0.62) 100%);
  }
  .about-band { min-height: 700px; }
  .omne-image-bg { width: 100%; }
  .omne-image-bg::before {
    background: linear-gradient(to right, #0a0a0a 0%, rgba(10,10,10,0.9) 40%, rgba(10,10,10,0.5) 100%);
  }
  .kontakt-image-bg { width: 100%; }
  .kontakt-image-bg::before {
    background: linear-gradient(to right, #0a0a0a 0%, rgba(10,10,10,0.9) 40%, rgba(10,10,10,0.5) 100%);
  }
  .kontakt-forms-grid, .omne-cards { grid-template-columns: 1fr; }
  .druhy-slim-grid { grid-template-columns: repeat(2, 1fr); }
  .poistenia-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cta-strip { grid-template-columns: 1fr; text-align: center; }
  .values-grid { justify-content: center; }
  .page-title-center, .omne-title { font-size: 56px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .header-inner { padding: 14px 20px; }
  .nav a { font-size: 10px; letter-spacing: 0.08em; }
  .hero h1 { font-size: 36px; }
  .hero-actions .btn { width: 100%; }
  .druhy-slim-grid,
  .poistenia-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, max-content);
    gap: 26px 34px;
  }
  .form-grid { grid-template-columns: 1fr; }
  .page-title-center,
  .omne-title { font-size: 44px; }
}
