/* ── o-mne.css ── */

/* ================================================
   ROMANA PAVLOVA — Human Design Guide
   style.css
   ================================================ */

/* ── PREMENNÉ ── */
:root {
  --blue: #C6C9EB;
  --rose: #E9C7EB;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --white: #FFFFFF;
  --off-white: #FAF9FC;
  --text-dark: #2A2A35;
  --text-mid: #55556A;
  --purple: #5C4FA0;
  --purple-rose: #B86BA8;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  font-weight: 400;
  overflow-x: hidden;
}

/* ================================================
   NAVIGÁCIA
   ================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 4rem;
  background: #ffffff;
  border-bottom: 1.5px solid rgba(198,201,235,0.5);
  box-shadow: 0 2px 16px rgba(198,201,235,0.2);
}
.nav-logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
  z-index: 301; position: relative;
}
.nav-logo .dot { color: var(--purple-rose); }

#nav-toggle { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer;
  z-index: 301; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: center;
  pointer-events: none;
}
#nav-toggle:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav-toggle:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
  padding: 0.35rem 0.55rem; border-radius: 3px;
  transition: background 0.18s;
}
.nav-links a:hover, .nav-links a.active { background: var(--blue); }

.nav-dropdown { position: relative; }
.nav-label { cursor: default; color: inherit; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; }
.nav-dropdown > a::after { content: ' ▾'; opacity: 0.45; font-size: 0.6rem; }
.nav-dropdown-menu {
  display: none; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 0.6rem;
  min-width: 148px; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.74rem; color: var(--text-dark); background: #fff;
  border-left: 1px solid rgba(198,201,235,0.55);
  border-right: 1px solid rgba(198,201,235,0.55);
}
.nav-dropdown-menu a:first-child { border-top: 1px solid rgba(198,201,235,0.55); border-radius: 4px 4px 0 0; }
.nav-dropdown-menu a:last-child { border-bottom: 1px solid rgba(198,201,235,0.55); border-radius: 0 0 4px 4px; }
.nav-dropdown-menu a:hover { background: var(--rose); }
.nav-hdcz a { color: var(--purple) !important; font-weight: 700 !important; }
.nav-hdcz a:hover { background: rgba(92,79,160,0.1) !important; }

.nav-overlay {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42,42,53,0.4);
  z-index: 199;
}

/* ── MOBILNÉ MENU ── */
@media (max-width: 900px) {
  nav { padding: 0.85rem 1.4rem; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 88vw);
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 5.5rem 1.5rem 2rem;
    gap: 0.1rem;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    z-index: 200;
    overflow-y: auto;
  }
  #nav-toggle:checked ~ .nav-links { transform: translateX(0); }
  #nav-toggle:checked ~ .nav-overlay { display: block; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; font-size: 0.95rem; padding: 0.85rem 1rem; border-radius: 5px; }
  .nav-label { cursor: default; color: inherit; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; }
.nav-dropdown > a::after { content: ' ▾'; }
  .nav-dropdown-menu {
    position: static !important; transform: none !important;
    box-shadow: none !important; border: none !important;
    background: rgba(198,201,235,0.25);
    border-radius: 5px; padding: 0.3rem 0;
    margin: 0.2rem 0 0.3rem 0.8rem;
    display: block !important;
  }
  .nav-dropdown-menu a { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
}

/* ================================================
   HERO
   ================================================ */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 62px; }

.hero-left {
  background: var(--rose);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
}
.hero-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dark); opacity: 0.55; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-tag::before { content: ''; display: block; width: 30px; height: 1.5px; background: var(--text-dark); opacity: 0.4; }
.hero-left h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem); font-weight: 300;
  line-height: 1.18; color: var(--text-dark); margin-bottom: 1.8rem; letter-spacing: -0.01em;
}
.hero-left h1 strong { font-weight: 700; }
.hero-left h1 em { font-style: italic; color: var(--purple); font-weight: 400; }
.hero-quote {
  font-style: italic; font-size: 0.95rem; color: var(--text-dark); opacity: 0.68;
  line-height: 1.78; margin-bottom: 0.4rem;
  padding-left: 1rem; border-left: 2px solid rgba(42,42,53,0.25);
}
.hero-quote-author {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dark); opacity: 0.42; padding-left: 1rem; margin-bottom: 2.8rem;
}
.hero-right {
  background: var(--blue); position: relative;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-bg-monogram {
  position: absolute; font-size: 22rem; font-weight: 700; color: rgba(255,255,255,0.15);
  line-height: 1; bottom: -3rem; right: -1rem;
  pointer-events: none; user-select: none; letter-spacing: -0.05em;
}

/* ================================================
   TLAČIDLÁ
   ================================================ */
.btn-primary {
  display: inline-block; background: var(--text-dark); color: #fff;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; text-decoration: none; border-radius: 3px;
  align-self: flex-start; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--purple); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block; border: 2px solid var(--text-dark); color: var(--text-dark);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 0.85rem 2rem; text-decoration: none; border-radius: 3px;
  align-self: flex-start; margin-top: 1.4rem; transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--text-dark); color: #fff; }

/* ================================================
   SECTION LABELS (spoločné)
   ================================================ */
.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: ''; display: block; width: 30px; height: 1.5px;
  background: currentColor; opacity: 0.5; flex-shrink: 0;
}

/* ================================================
   ČO JE HD — zlatá
   ================================================ */
.section-hd { background: var(--gold-light); padding: 6rem 6rem 4rem; }
.section-hd .section-label { color: #8B6914; }
.section-hd h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem); font-weight: 300;
  color: var(--text-dark); margin-bottom: 1rem; line-height: 1.25; letter-spacing: -0.01em;
}
.section-hd h2 strong { font-weight: 700; }
.section-hd .intro-text {
  font-size: 0.93rem; line-height: 1.85; color: var(--text-mid); max-width: 620px; margin-bottom: 0;
}

/* ================================================
   BENEFITS — biela
   ================================================ */
.section-benefits { background: var(--white); padding: 4rem 6rem 6rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.benefit-item {
  background: var(--off-white); padding: 1.5rem 1.3rem;
  border-radius: 5px; border-top: 3px solid rgba(92,79,160,0.25);
}
.benefit-check { font-size: 0.74rem; font-weight: 700; color: var(--purple); margin-bottom: 0.55rem; }
.benefit-item h3 { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.45rem; line-height: 1.4; }
.benefit-item p { font-size: 0.81rem; line-height: 1.75; color: var(--text-mid); }
.hd-closing {
  background: var(--off-white); padding: 1.8rem 2.2rem;
  border-left: 4px solid var(--gold);
  font-size: 1rem; font-style: italic; color: var(--text-dark); line-height: 1.7;
  border-radius: 0 4px 4px 0;
}

/* ================================================
   JA A HD — modrá
   ================================================ */
.section-about { display: grid; grid-template-columns: 1fr 1fr; }
.about-visual { background: var(--blue); min-height: 560px; overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-content {
  background: var(--blue); padding: 6rem 5rem 6rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-content .section-label { color: var(--purple); }
.about-content h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.3rem); font-weight: 300;
  line-height: 1.25; color: var(--text-dark); margin-bottom: 1.8rem; letter-spacing: -0.01em;
}
.about-content h2 strong { font-weight: 700; }
.about-content p { font-size: 0.91rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1.1rem; }
.about-content strong { color: var(--text-dark); font-weight: 600; }

/* ================================================
   RECENZIE
   ================================================ */
.section-testimonials { background: var(--off-white); padding: 7rem 6rem; }
.section-testimonials h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 300;
  color: var(--text-dark); margin-bottom: 3rem; text-align: center; letter-spacing: -0.01em;
}
.section-testimonials h2 strong { font-weight: 700; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testimonial-card { padding: 2rem 1.8rem; border-radius: 6px; position: relative; }
.testimonial-card:nth-child(odd)  { background: var(--rose); }
.testimonial-card:nth-child(even) { background: var(--blue); }
.testimonial-card::before {
  content: 'C'; font-size: 3.5rem; line-height: 1; font-weight: 700;
  color: rgba(42,42,53,0.1); position: absolute; top: 0.7rem; left: 1.3rem;
}
.testimonial-text {
  font-style: italic; font-size: 0.9rem; line-height: 1.8;
  color: var(--text-dark); padding-top: 2rem; margin-bottom: 1.3rem;
}
.testimonial-author { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dark); opacity: 0.48; }

/* ================================================
   NEWSLETTER — ružová
   ================================================ */
.section-newsletter {
  background: var(--rose); padding: 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.newsletter-text .section-label { color: rgba(255,255,255,0.65); }
.newsletter-text h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.3rem); font-weight: 300;
  color: #ffffff; margin-bottom: 0.9rem; line-height: 1.25; letter-spacing: -0.01em;
}
.newsletter-text h2 strong { font-weight: 700; color: #ffffff; }
.newsletter-text p { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); }
.newsletter-form { display: flex; flex-direction: column; gap: 0.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.newsletter-form input {
  background: rgba(255,255,255,0.7); border: 1.5px solid rgba(42,42,53,0.14);
  padding: 0.82rem 1.05rem; font-family: 'Open Sans', sans-serif;
  font-size: 0.87rem; color: var(--text-dark); outline: none;
  border-radius: 3px; transition: border-color 0.2s, background 0.2s; width: 100%;
}
.newsletter-form input::placeholder { color: rgba(42,42,53,0.32); }
.newsletter-form input:focus { border-color: var(--purple-rose); background: #fff; }
.btn-newsletter {
  background: var(--text-dark); color: #fff; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; padding: 0.88rem 2rem;
  border: none; border-radius: 3px; cursor: pointer; align-self: flex-start; transition: background 0.2s;
}
.btn-newsletter:hover { background: var(--purple); }
.newsletter-privacy { font-size: 0.7rem; color: rgba(42,42,53,0.4); }

/* ================================================
   KONTAKT
   ================================================ */
.section-contact {
  padding: 7rem 6rem; background: #C6C9EB;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start;
}
.contact-info .section-label { color: rgba(255,255,255,0.6); }
.contact-info h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 700;
  line-height: 1.25; color: #ffffff; margin-bottom: 1.1rem; letter-spacing: -0.01em;
}
.contact-info h2 strong { font-weight: 700; color: #ffffff; }
.contact-info p { font-size: 0.91rem; line-height: 1.85; color: var(--text-dark); opacity: 0.8; }
.contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-form input, .contact-form textarea {
  background: var(--off-white); border: 1.5px solid rgba(198,201,235,0.7);
  padding: 0.92rem 1.05rem; font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem; color: var(--text-dark); outline: none;
  border-radius: 3px; transition: border-color 0.2s; resize: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: #9B8EC4; }
.contact-form textarea { min-height: 130px; }
.btn-send {
  background: var(--text-dark); color: #fff; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; padding: 0.88rem 2.2rem;
  border: none; border-radius: 3px; cursor: pointer; align-self: flex-start; transition: background 0.2s;
}
.btn-send:hover { background: var(--purple); }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--text-dark); color: rgba(255,255,255,0.45);
  padding: 2.4rem 6rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; letter-spacing: 0.05em;
}
footer a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold-light); }
.footer-links { display: flex; gap: 2rem; }

/* ================================================
   ANIMÁCIE
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.hero-tag              { animation-delay: 0.15s; }
.hero-left h1          { animation-delay: 0.28s; }
.hero-quote            { animation-delay: 0.42s; }
.hero-quote-author     { animation-delay: 0.48s; }
.hero-left .btn-primary { animation-delay: 0.6s; }
.hero-right            { opacity: 0; animation: fadeUp 0.85s ease 0.3s forwards; }

/* ================================================
   RESPONZÍVNE
   ================================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 5rem 2rem 3rem; }
  .hero-right { min-height: 320px; }
  .section-hd, .section-benefits, .section-testimonials, .section-contact { padding: 4rem 2rem; }
  .section-newsletter { padding: 4rem 2rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .benefits-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .section-about { grid-template-columns: 1fr; }
  .about-visual { min-height: 320px; }
  .about-content { padding: 3.5rem 2rem; }
  .section-contact { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.8rem 2rem; }
}

/* ================================================
   BIELE NADPISY NA FAREBNÝCH BLOKOCH
   ================================================ */

/* Hero ľavá — ružová */
.hero-left h1 { color: #ffffff; }
.hero-left h1 em { color: rgba(255,255,255,0.75); }
.hero-left h1 strong { color: #ffffff; }
.hero-tag { color: rgba(255,255,255,0.7); opacity: 1; }
.hero-tag::before { background: rgba(255,255,255,0.5); opacity: 1; }
.hero-quote { color: rgba(255,255,255,0.75); border-left-color: rgba(255,255,255,0.35); }
.hero-quote-author { color: rgba(255,255,255,0.5); opacity: 1; }

/* About — modrá */
.about-content h2 { color: #ffffff; }
.about-content h2 strong { color: #ffffff; }
.about-content p { color: rgba(255,255,255,0.8); }
.about-content strong { color: #ffffff; }
.about-content .section-label { color: rgba(255,255,255,0.6); }

/* Biele tlačidlo na farebnom pozadí */
.btn-white {
  border-color: rgba(255,255,255,0.7) !important;
  color: #ffffff !important;
}
.btn-white:hover {
  background: #ffffff !important;
  color: var(--text-dark) !important;
  border-color: #ffffff !important;
}

/* ================================================
   OPRAVA: len nadpisy biele, texty tmavé + väčšie
   ================================================ */

/* Hero — texty späť tmavé (nie biele), len h1 ostáva biely */
.hero-quote { color: var(--text-dark) !important; opacity: 0.75; font-size: 1.05rem; }
.hero-quote-author { color: var(--text-dark) !important; opacity: 0.5; }
.hero-tag { color: var(--text-dark) !important; opacity: 0.6; }
.hero-tag::before { background: var(--text-dark) !important; }

/* About — texty späť tmavé, len h2 ostáva biely */
.about-content p { color: var(--text-dark) !important; opacity: 0.82; font-size: 1rem; }
.about-content strong { color: var(--text-dark) !important; }
.about-content .section-label { color: var(--purple) !important; opacity: 1; }

/* Zlatá sekcia — headline biely */
.section-hd h2 { color: #ffffff !important; }
.section-hd h2 strong { color: #ffffff !important; }
.section-hd .section-label { color: rgba(255,255,255,0.65) !important; }
.section-hd .intro-text { color: var(--text-dark) !important; font-size: 1rem; }

/* Väčšie texty globálne */
.benefit-item p { font-size: 0.92rem; line-height: 1.8; }
.benefit-item h3 { font-size: 0.98rem; }
.testimonial-text { font-size: 1rem; }
.newsletter-text p { font-size: 1rem; }
.contact-info p { font-size: 1rem; }
.about-content p { font-size: 1rem; }
.hero-quote { font-size: 1.05rem; }
.section-hd .intro-text { font-size: 1.02rem; }

/* ── FORM FEEDBACK SPRÁVY ── */
.form-msg {
  font-size: 0.88rem;
  margin-top: 0.7rem;
  min-height: 1.2em;
  display: block;
}
.form-msg.success { color: #2d6a4f; font-weight: 500; }
.form-msg.error   { color: #c0392b; font-weight: 500; }

/* Pomlčka v zlatej sekcii — biela (lebo headline je biely) */
.section-hd .section-label { color: rgba(255,255,255,0.65) !important; }

/* Pomlčka v modrej (about) sekcii */
.about-content .section-label { color: rgba(255,255,255,0.55) !important; }

/* btn-primary na modrom pozadí — tmavé tlačidlo */
.about-content .btn-primary {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
  margin-top: 2rem;
}
.about-content .btn-primary:hover {
  background: transparent;
  color: var(--text-dark);
}

/* ================================================
   O MNE — page styles
   ================================================ */

/* ── HERO: KTO SOM ── */
.omne-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.omne-hero-text {
  background: #E9C7EB;
  padding: 8rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.omne-hero-text h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.omne-hero-text h1 strong { font-weight: 700; color: #ffffff; }
.omne-hero-text p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.omne-hero-text .section-label { color: rgba(255,255,255,0.65); }
.omne-design-tag {
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55) !important;
  opacity: 1 !important;
  margin-top: 0.5rem;
  margin-bottom: 2rem !important;
}
.omne-hero-photo {
  background: #C6C9EB;
  overflow: hidden;
}
.omne-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── ČO ROBÍM ── */
.omne-co-robim {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.omne-co-photo {
  overflow: hidden;
  background: #f5f5f5;
}
.omne-co-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.omne-co-text {
  background: #ffffff;
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.omne-co-text h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.22;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.omne-co-text h2 strong { font-weight: 700; }
.omne-co-text p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.82;
}
.omne-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  opacity: 0.65;
}
.omne-links a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
}
.omne-links a:hover { text-decoration: underline; }

/* ── JA A HUMAN DESIGN ── */
.omne-ja-hd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.omne-ja-text {
  background: #C6C9EB;
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.omne-ja-text h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.22;
  color: #ffffff;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.omne-ja-text h2 strong { font-weight: 700; color: #ffffff; }
.omne-ja-text p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.82;
}
.omne-ja-text .section-label { color: rgba(255,255,255,0.6); }
.omne-ja-photo {
  overflow: hidden;
  background: #1a1a1a;
}
.omne-ja-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── PONUKA ── */
.omne-ponuka {
  background: var(--gold-light);
  padding: 6rem 6rem 5rem;
  text-align: center;
}
.omne-ponuka h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}
.omne-ponuka .section-label { color: rgba(255,255,255,0.65); justify-content: center; }
.ponuka-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
}
.ponuka-item {
  background: rgba(255,255,255,0.65);
  border-radius: 6px;
  padding: 2rem 1.8rem;
}
.ponuka-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.ponuka-cena {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--purple) !important;
  opacity: 1 !important;
  margin-bottom: 0.8rem !important;
}
.ponuka-item p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
  opacity: 0.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .ponuka-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .omne-hero,
  .omne-co-robim,
  .omne-ja-hd { grid-template-columns: 1fr; }

  .omne-hero-photo,
  .omne-co-photo,
  .omne-ja-photo {
    min-height: unset !important;
    height: auto !important;
    aspect-ratio: 3/4;
    max-height: none !important;
  }

  .omne-hero-photo img,
  .omne-co-photo img,
  .omne-ja-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  /* Na mobile — text hore, foto dole (pod príslušným textom) */
  .omne-co-robim { display: flex; flex-direction: column; }
  .omne-co-photo { order: 2; }
  .omne-co-text { order: 1; }

  .omne-hero-text,
  .omne-co-text,
  .omne-ja-text { padding: 4rem 2rem; }

  .omne-ponuka { padding: 4rem 2rem; }
  .ponuka-grid { grid-template-columns: 1fr; }
}


/* ── CONTACT AVATARS (foto + badge) ── */
.contact-avatars {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}
.contact-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid rgba(255,255,255,0.5);
}
.contact-badge-link { display: block; }
.contact-badge {
  width: 120px; height: 120px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s;
}
.contact-badge:hover { transform: scale(1.05); }

/* FONT FALLBACK pre file:// preview */
  body { font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif !important; }
  h1, h2, h3, strong, b { font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif !important; }
  strong, b { font-weight: 700 !important; }
  h2 strong { font-weight: 700 !important; }
