/* =============================================================================
   CHYBIS.CZ — home3.css
   Digitální vzpomínky · Dark luxury memorial design system
   Verze: 2.0 · Autor: redesign 2026
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (design tokeny)
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  /* Paleta */
  --gold-100:   #fff8dc;
  --gold-200:   #f8e79d;
  --gold-300:   #e9cf7b;
  --gold-400:   #d4af37;
  --gold-500:   #c8a84b;
  --gold-600:   #b29600;
  --gold-700:   #8b6914;
  --gold-800:   #5a4200;
  --gold-glow:  rgba(200, 168, 75, 0.22);
  --gold-glow-s: rgba(200, 168, 75, 0.10);

  --dark-900:   #06050400;
  --dark-base:  #0c0b09;
  --dark-800:   #101009;
  --dark-700:   #141210;
  --dark-600:   #1a1814;
  --dark-500:   #201e18;
  --dark-400:   #28251e;
  --dark-300:   #332f26;
  --dark-200:   #3f3b30;

  --cream-100:  #fdf8f0;
  --cream-200:  #f8f0e3;
  --cream-300:  #f0e8d8;
  --cream-400:  #e0d4be;
  --cream-500:  #c8b896;

  --muted-100:  #8c7d6a;
  --muted-200:  #6e614e;
  --muted-300:  #504539;

  --error:      rgba(220, 38, 38, 0.15);
  --error-text: #fca5a5;

  /* Mezery */
  --space-xs:   0.375rem;
  --space-sm:   0.625rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4.5rem;
  --space-4xl:  6rem;

  /* Border radius */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Typografie */
  --ff-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body:    'Outfit', system-ui, -apple-system, sans-serif;

  /* Stíny */
  --shadow-xs:   0 1px 3px rgba(0,0,0,0.4);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.5);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.55);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.65);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.75);
  --shadow-gold: 0 8px 32px rgba(200,168,75,0.22);
  --shadow-gold-lg: 0 16px 56px rgba(200,168,75,0.28);

  /* Přechody */
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  0.15s;
  --t-mid:   0.30s;
  --t-slow:  0.50s;

  /* Nav height */
  --nav-h: 68px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream-300);
  background-color: var(--dark-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Skrytí scrollbaru — zachování funkčnosti */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. UTILITY TŘÍDY
   ───────────────────────────────────────────────────────────────────────────── */

/* Skrytí */
.d-none { display: none !important; }

/* Tlačítka — sdílené základy */
.h3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.4;
  border-radius: var(--r-sm);
  border: none;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--t-mid) var(--ease),
    color      var(--t-mid) var(--ease),
    box-shadow var(--t-mid) var(--ease),
    transform  var(--t-mid) var(--ease-spring),
    border-color var(--t-mid) var(--ease);
  user-select: none;
  -webkit-user-select: none;
}

.h3-btn-gold {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 55%, var(--gold-600) 100%);
  color: var(--dark-base);
  box-shadow: 0 3px 14px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.18);
}
.h3-btn-gold:hover,
.h3-btn-gold:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 24px rgba(200,168,75,0.42), inset 0 1px 0 rgba(255,255,255,0.22);
  color: var(--dark-base);
  text-decoration: none;
}
.h3-btn-gold:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 8px var(--gold-glow);
}

.h3-btn-ghost {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid rgba(200,168,75,0.38);
}
.h3-btn-ghost:hover,
.h3-btn-ghost:focus-visible {
  background: rgba(200,168,75,0.1);
  border-color: rgba(200,168,75,0.65);
  color: var(--gold-300);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Label / badge sekce */
.h3-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.9rem;
}
.h3-label i,
.h3-label svg {
  font-size: 0.8rem;
  opacity: 0.85;
}
.h3-label::before,
.h3-label::after {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600));
  flex-shrink: 0;
}
.h3-label::after {
  background: linear-gradient(90deg, var(--gold-600), transparent);
}

/* Oddělovač sekce */
.h3-divider {
  display: block;
  width: 56px;
  height: 2px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  border: none;
}

/* Název sekce */
.h3-section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-200) 55%, var(--cream-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Střed sekce */
.h3-section-head {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.h3-section-head > p {
  color: var(--muted-100);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0.8rem auto 0;
}

/* Container */
.h3-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   4. NAV — HEADER
   ───────────────────────────────────────────────────────────────────────────── */
.h3-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(200,168,75,0.14);
  transition:
    border-color    var(--t-mid) var(--ease),
    box-shadow      var(--t-mid) var(--ease),
    background      var(--t-mid) var(--ease);
}
.h3-nav.scrolled {
  border-bottom-color: rgba(200,168,75,0.32);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.6),
    0 1px 0   rgba(200,168,75,0.12);
  background: rgba(10, 9, 7, 0.97);
}

/* Nav vnitřní layout */
.h3-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

/* Logo */
.h3-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
  outline: none;
}
.h3-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  object-fit: contain;
  border: 1px solid rgba(200,168,75,0.22);
  transition: border-color var(--t-mid) var(--ease);
}
.h3-logo:hover .h3-logo-img {
  border-color: rgba(200,168,75,0.55);
}
.h3-logo-text {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 60%, var(--gold-100) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop nav linky */
.h3-nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}
@media (min-width: 1024px) {
  .h3-nav-links {
    display: flex;
  }
}

.h3-nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--muted-100);
  text-decoration: none;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition:
    color      var(--t-mid) var(--ease),
    background var(--t-mid) var(--ease);
  position: relative;
}
.h3-nav-links > li > a i {
  font-size: 0.78rem;
  opacity: 0.7;
  flex-shrink: 0;
}
.h3-nav-links > li > a:hover,
.h3-nav-links > li > a.active {
  color: var(--gold-300);
  background: rgba(200,168,75,0.09);
}
/* Tlačítko v nav (přihlásit se) */
.h3-nav-links > li > a.h3-btn.h3-btn-gold {
  color: var(--dark-base) !important;
}

/* Mobilní toggle */
.h3-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.22);
  color: var(--gold-500);
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    background    var(--t-mid) var(--ease),
    border-color  var(--t-mid) var(--ease);
  flex-shrink: 0;
}
.h3-mobile-toggle:hover {
  background: rgba(200,168,75,0.16);
  border-color: rgba(200,168,75,0.42);
}
@media (min-width: 1024px) {
  .h3-mobile-toggle {
    display: none;
  }
}

/* Mobilní menu */
.h3-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: rgba(10, 9, 7, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200,168,75,0.2);
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}
.h3-mobile-menu.open {
  display: flex;
  animation: h3-menu-slide 0.22s var(--ease-out) both;
}
@keyframes h3-menu-slide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

.h3-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted-100);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition:
    color      var(--t-mid) var(--ease),
    background var(--t-mid) var(--ease);
}
.h3-mobile-menu a:hover {
  color: var(--gold-300);
  background: rgba(200,168,75,0.09);
}
.h3-mobile-menu a i {
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  color: var(--gold-600);
  opacity: 0.8;
  flex-shrink: 0;
}
/* Tlačítko uvnitř mobile menu */
.h3-mobile-menu a.h3-btn.h3-btn-gold {
  color: var(--dark-base) !important;
  margin-top: 0.25rem;
}

/* Oddělovač v mobile menu */
.h3-mobile-sep {
  height: 1px;
  background: rgba(200,168,75,0.15);
  margin: 0.4rem 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. HERO SEKCE
   ───────────────────────────────────────────────────────────────────────────── */
.h3-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-base);
}

/* Barevný blur pozadí */
.h3-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 72% 38%, rgba(200,168,75,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 70%, rgba(139,105,20,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Zrnění — atmosferický efekt */
.h3-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Dekorativní kruhy */
.h3-hero-arc {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.h3-hero-arc-1 {
  width: 700px;
  height: 700px;
  top: -250px;
  right: -120px;
  background: radial-gradient(circle, rgba(200,168,75,0.055) 0%, transparent 68%);
  animation: h3-breathe 10s ease-in-out infinite alternate;
}
.h3-hero-arc-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(200,168,75,0.04) 0%, transparent 68%);
  animation: h3-breathe 14s ease-in-out infinite alternate-reverse;
}
@keyframes h3-breathe {
  from { transform: scale(1);    opacity: 0.7; }
  to   { transform: scale(1.08); opacity: 1; }
}

/* Hero vnitřní grid */
.h3-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
@media (min-width: 860px) {
  .h3-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-4xl);
  }
}

/* ── Hero text ── */
.h3-hero-text {
  display: flex;
  flex-direction: column;
}

.h3-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.025em;
  background: linear-gradient(
    145deg,
    var(--cream-200) 0%,
    var(--gold-300) 38%,
    var(--gold-500) 72%,
    var(--gold-700) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.h3-hero-sub {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--muted-100);
  max-width: 460px;
  margin-bottom: var(--space-xl);
}

/* Search bar */
.h3-search-bar {
  display: flex;
  align-items: stretch;
  max-width: 440px;
  width: 100%;
  background: var(--dark-600);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition:
    border-color var(--t-mid) var(--ease),
    box-shadow   var(--t-mid) var(--ease);
}
.h3-search-bar:focus-within {
  border-color: rgba(200,168,75,0.55);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.12);
}
.h3-search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.7rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--cream-300);
  line-height: 1;
}
.h3-search-bar input::placeholder {
  color: var(--muted-200);
}
.h3-search-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.7rem 1.1rem;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 100%);
  border: none;
  color: var(--dark-base);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: filter var(--t-fast) var(--ease);
  cursor: pointer;
}
.h3-search-bar button:hover {
  filter: brightness(1.12);
}
.h3-search-bar button i {
  font-size: 0.9rem;
}

/* Hero akce */
.h3-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ── Hero slider ── */
.h3-hero-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h3-slider-frame {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 9 / 11;
  border-radius: var(--r-xl);
  border: 1px solid rgba(200,168,75,0.32);
  overflow: hidden;
  background: var(--dark-600);
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(200,168,75,0.12),
    var(--shadow-gold);
}
@media (min-width: 860px) {
  .h3-slider-frame {
    width: min(360px, 100%);
  }
}

.h3-slider-track {
  display: flex;
  height: 100%;
  transition: transform var(--t-slow) var(--ease);
}

.h3-slider-item {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.h3-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Slider tlačítka */
.h3-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12, 11, 9, 0.78);
  border: 1px solid rgba(200,168,75,0.38);
  color: var(--gold-400);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background     var(--t-mid) var(--ease),
    color          var(--t-mid) var(--ease),
    border-color   var(--t-mid) var(--ease),
    transform      var(--t-mid) var(--ease-spring);
}
.h3-slider-btn:hover {
  background: var(--gold-500);
  color: var(--dark-base);
  border-color: var(--gold-500);
  transform: translateY(-50%) scale(1.1);
}
.h3-slider-btn-prev { left: -16px; }
.h3-slider-btn-next { right: -16px; }

/* Slider tečky */
.h3-slider-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
}
.h3-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--muted-300);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background var(--t-mid) var(--ease),
    width      var(--t-mid) var(--ease);
}
.h3-dot.active {
  background: var(--gold-500);
  width: 22px;
}
.h3-dot:hover:not(.active) {
  background: var(--gold-700);
}

/* Floating badges */
.h3-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 18, 16, 0.9);
  border: 1px solid rgba(200,168,75,0.32);
  border-radius: var(--r-md);
  padding: 10px 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200,168,75,0.08);
  z-index: 5;
  animation: h3-float 4.5s ease-in-out infinite;
  pointer-events: none;
}
.h3-float-badge-1 {
  top: 8%;
  right: -14px;
}
.h3-float-badge-2 {
  bottom: 10%;
  left: -14px;
  animation-delay: 1.1s;
  animation-duration: 5.5s;
}
@media (max-width: 859px) {
  .h3-float-badge { display: none; }
}

@keyframes h3-float {
  0%,  100% { transform: translateY(0px); }
  50%        { transform: translateY(-9px); }
}

.h3-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--dark-base);
  flex-shrink: 0;
}
.h3-badge-label {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted-100);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.h3-badge-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1.3;
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. FEATURES SEKCE
   ───────────────────────────────────────────────────────────────────────────── */
.h3-features {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--dark-base) 0%,
    var(--dark-700)  25%,
    var(--dark-700)  75%,
    var(--dark-base) 100%
  );
}
.h3-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200,168,75,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Feature karta */
.h3-feature-card {
  position: relative;
  background: var(--dark-600);
  border: 1px solid rgba(200,168,75,0.14);
  border-radius: var(--r-lg);
  padding: var(--space-xl) var(--space-xl);
  overflow: hidden;
  transition:
    border-color var(--t-mid) var(--ease),
    box-shadow   var(--t-mid) var(--ease),
    transform    var(--t-mid) var(--ease-spring);
  height: 100%;
}
/* Zlatá čára nahoře na hover */
.h3-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}
/* Subtilní svítivost v rohu */
.h3-feature-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--t-mid) var(--ease);
  opacity: 0;
}
.h3-feature-card:hover {
  border-color: rgba(200,168,75,0.35);
  box-shadow: var(--shadow-gold), var(--shadow-md);
  transform: translateY(-4px);
}
.h3-feature-card:hover::before { opacity: 1; }
.h3-feature-card:hover::after  { opacity: 1; }

.h3-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(200,168,75,0.14) 0%, rgba(200,168,75,0.06) 100%);
  border: 1px solid rgba(200,168,75,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: border-color var(--t-mid) var(--ease);
}
.h3-feature-card:hover .h3-feature-icon {
  border-color: rgba(200,168,75,0.45);
}
.h3-feature-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(1.2) saturate(0.8);
}
.h3-feature-icon i {
  font-size: 1.4rem;
  color: var(--gold-500);
}

.h3-feature-card h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream-300);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.h3-feature-card p {
  font-size: 0.86rem;
  line-height: 1.66;
  color: var(--muted-100);
}
.h3-feature-card p a { color: var(--gold-500); }
.h3-feature-card p a:hover { color: var(--gold-300); }

/* Min výška pro slick karty */
.feature-min-height { min-height: 290px; }

/* Slick override pro features */
.h3-features .feature-slider .slick-slide {
  padding: 0 10px;
}
.h3-features .feature-slider .slick-list {
  margin: 0 -10px;
  overflow: visible;
}
.h3-features .feature-slider .slick-track {
  display: flex;
  align-items: stretch;
}
.h3-features .feature-slider .slick-slide > div,
.h3-features .feature-slider .slick-slide > div > * {
  height: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   7. TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────────── */
.h3-testimonials {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--dark-base);
  overflow: hidden;
}
/* Velká uvozovka v pozadí */
.h3-testimonials::after {
  content: '\201C';
  position: absolute;
  top: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: min(20rem, 30vw);
  line-height: 1;
  color: rgba(200,168,75,0.03);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Testimonial karta */
.h3-testi-card {
  background: var(--dark-600);
  border: 1px solid rgba(200,168,75,0.13);
  border-radius: var(--r-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    border-color var(--t-mid) var(--ease),
    box-shadow   var(--t-mid) var(--ease),
    transform    var(--t-mid) var(--ease-spring);
}
.h3-testi-card:hover {
  border-color: rgba(200,168,75,0.32);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.h3-testi-stars {
  display: flex;
  gap: 3px;
  color: var(--gold-400);
  font-size: 0.8rem;
  margin-bottom: var(--space-md);
}
.h3-testi-text {
  font-family: var(--ff-display);
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.72;
  color: var(--cream-300);
  flex: 1;
  margin-bottom: var(--space-md);
}
.h3-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(200,168,75,0.12);
}
.h3-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,168,75,0.3);
  flex-shrink: 0;
}
.h3-testi-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-base);
  flex-shrink: 0;
  border: 2px solid rgba(200,168,75,0.3);
}
.h3-testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream-300);
}

.testimonial-min-height { min-height: 280px; }

/* Slick override — testimonials */
.h3-testimonials .testimonial-slider .slick-slide {
  padding: 0 10px;
}
.h3-testimonials .testimonial-slider .slick-list {
  margin: 0 -10px;
  overflow: visible;
}
.h3-testimonials .testimonial-slider .slick-track {
  display: flex;
  align-items: stretch;
}
.h3-testimonials .testimonial-slider .slick-slide > div,
.h3-testimonials .testimonial-slider .slick-slide > div > * {
  height: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   8. O NÁS
   ───────────────────────────────────────────────────────────────────────────── */
.h3-about {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--dark-700);
  overflow: hidden;
}
/* Subtilní pattern */
.h3-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(200,168,75,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200,168,75,0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Karty O nás */
.h3-about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}
@media (min-width: 768px) {
  .h3-about-cards { grid-template-columns: repeat(3, 1fr); }
}

.h3-about-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(200,168,75,0.15);
  background: var(--dark-600);
  transition:
    border-color var(--t-mid) var(--ease),
    box-shadow   var(--t-mid) var(--ease),
    transform    var(--t-mid) var(--ease-spring);
}
.h3-about-card:hover {
  border-color: rgba(200,168,75,0.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.h3-about-card-img {
  position: relative;
  height: 195px;
  overflow: hidden;
}
.h3-about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease);
}
.h3-about-card:hover .h3-about-card-img img {
  transform: scale(1.06);
}
.h3-about-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(12,11,9,0.75) 100%);
  pointer-events: none;
}

.h3-about-card-body {
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
}
.h3-about-card-body h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}
.h3-about-card-body p {
  font-size: 0.85rem;
  line-height: 1.68;
  color: var(--muted-100);
}

/* Hodnoty */
.h3-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}
@media (min-width: 600px) {
  .h3-values { grid-template-columns: repeat(3, 1fr); }
}

.h3-value {
  background: var(--dark-500);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--r-md);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition:
    border-color var(--t-mid) var(--ease),
    box-shadow   var(--t-mid) var(--ease),
    transform    var(--t-mid) var(--ease-spring);
}
.h3-value:hover {
  border-color: rgba(200,168,75,0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.h3-value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(200,168,75,0.09);
  border: 1px solid rgba(200,168,75,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}
.h3-value-icon i  { font-size: 1.4rem; color: var(--gold-500); }
.h3-value-icon img { width: 26px; height: 26px; object-fit: contain; }

.h3-value h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream-300);
  margin-bottom: 0.45rem;
  line-height: 1.4;
}
.h3-value p {
  font-size: 0.82rem;
  line-height: 1.66;
  color: var(--muted-100);
}

/* Mise */
.h3-mission {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(200,168,75,0.18);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
  .h3-mission { grid-template-columns: 55% 45%; }
}

.h3-mission-text {
  padding: var(--space-2xl) var(--space-2xl);
  background: var(--dark-600);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}
.h3-mission-text h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--cream-200);
  line-height: 1.25;
}
.h3-mission-text > p {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--muted-100);
}
.h3-mission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.h3-mission-quote {
  position: relative;
  padding: var(--space-2xl);
  background: linear-gradient(
    145deg,
    rgba(90,66,0,0.7)  0%,
    rgba(40,30,0,0.85) 50%,
    rgba(12,11,9,0.9)  100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
/* Dekorativní velká uvozovka */
.h3-mission-quote::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: var(--space-lg);
  font-family: var(--ff-display);
  font-size: 7rem;
  line-height: 1;
  color: rgba(200,168,75,0.1);
  pointer-events: none;
}
.h3-mission-quote blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-style: italic;
  line-height: 1.72;
  color: var(--cream-300);
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   9. VCARD ŠABLONY
   ───────────────────────────────────────────────────────────────────────────── */
.h3-vcards {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-4xl);
  background: var(--dark-base);
  overflow: hidden;
}
.h3-vcards::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 100%, rgba(200,168,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Vcard slider (Slick center mode) */
.h3-vcard-wrap .center-slider .slick-slide {
  padding: 0 8px;
  opacity: 0.5;
  transform: scale(0.94);
  transition:
    opacity   var(--t-slow) var(--ease),
    transform var(--t-slow) var(--ease-spring);
}
.h3-vcard-wrap .center-slider .slick-center {
  opacity: 1;
  transform: scale(1);
}
.h3-vcard-wrap .center-slider .slick-center .vcard-card {
  box-shadow: 0 20px 55px rgba(200,168,75,0.22), var(--shadow-xl);
  border-color: rgba(200,168,75,0.4);
}

.vcard-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(200,168,75,0.15);
  background: var(--dark-600);
  transition:
    box-shadow   var(--t-mid) var(--ease),
    border-color var(--t-mid) var(--ease);
}
.vcard-img {
  display: block;
  width: 100%;
  height: auto;
}

.h3-vcard-more {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ─────────────────────────────────────────────────────────────────────────────
   10. FAQ
   ───────────────────────────────────────────────────────────────────────────── */
.h3-faq {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--dark-700);
  overflow: hidden;
}

.h3-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.h3-faq-item {
  background: var(--dark-600);
  border: 1px solid rgba(200,168,75,0.14);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    border-color var(--t-mid) var(--ease),
    box-shadow   var(--t-mid) var(--ease);
}
.h3-faq-item.open {
  border-color: rgba(200,168,75,0.35);
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

.h3-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: 1rem var(--space-lg);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--cream-300);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color var(--t-mid) var(--ease);
}
.h3-faq-item.open .h3-faq-btn {
  color: var(--gold-300);
}
.h3-faq-btn span {
  flex: 1;
  text-align: left;
}

.h3-faq-icon {
  font-size: 1.15rem;
  color: var(--muted-100);
  flex-shrink: 0;
  transition:
    transform var(--t-mid) var(--ease),
    color     var(--t-mid) var(--ease);
}
.h3-faq-item.open .h3-faq-icon {
  transform: rotate(180deg);
  color: var(--gold-500);
}

.h3-faq-answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: 1px solid rgba(200,168,75,0.1);
}
.h3-faq-answer p {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--muted-100);
  padding-top: var(--space-md);
}
.h3-faq-answer a { color: var(--gold-500); }
.h3-faq-answer a:hover { color: var(--gold-300); }

/* FAQ CTA */
.h3-faq-cta {
  text-align: center;
  margin-top: var(--space-3xl);
}
.h3-faq-cta > p {
  font-size: 0.9rem;
  color: var(--muted-100);
  margin-bottom: var(--space-lg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   11. KONTAKT
   ───────────────────────────────────────────────────────────────────────────── */
.h3-contact {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--dark-base);
  overflow: hidden;
}
.h3-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(200,168,75,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.h3-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--dark-600);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
  .h3-contact-grid { grid-template-columns: 320px 1fr; }
}

/* Info sloupec */
.h3-contact-info {
  padding: var(--space-2xl);
  background: linear-gradient(165deg, var(--dark-500) 0%, var(--dark-700) 100%);
  border-bottom: 1px solid rgba(200,168,75,0.12);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .h3-contact-info {
    border-bottom: none;
    border-right: 1px solid rgba(200,168,75,0.12);
  }
}

.h3-contact-info > div:first-child h3 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.h3-contact-info > div:first-child p {
  font-size: 0.84rem;
  line-height: 1.66;
  color: var(--muted-100);
}

.h3-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(200,168,75,0.1);
  border-radius: var(--r-md);
  transition:
    border-color var(--t-mid) var(--ease),
    background   var(--t-mid) var(--ease);
}
.h3-contact-item:hover {
  border-color: rgba(200,168,75,0.25);
  background: rgba(200,168,75,0.04);
}

.h3-contact-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-500);
  flex-shrink: 0;
}

.h3-contact-item-label {
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-200);
  margin-bottom: 3px;
}
.h3-contact-item-value {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--cream-300);
  word-break: break-all;
  line-height: 1.4;
}

/* Formulář */
.h3-contact-form {
  padding: var(--space-2xl);
}
.h3-contact-form > h3 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--cream-200);
  margin-bottom: var(--space-xl);
  line-height: 1.2;
}

.h3-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
@media (max-width: 560px) {
  .h3-form-row { grid-template-columns: 1fr; }
}
.h3-form-mb { margin-bottom: var(--space-md); }

.h3-input,
.h3-textarea {
  width: 100%;
  background: var(--dark-500);
  border: 1px solid rgba(200,168,75,0.16);
  border-radius: var(--r-sm);
  padding: 0.65rem 0.9rem;
  font-family: var(--ff-body);
  font-size: 0.87rem;
  color: var(--cream-300);
  line-height: 1.5;
  outline: none;
  transition:
    border-color var(--t-mid) var(--ease),
    box-shadow   var(--t-mid) var(--ease),
    background   var(--t-mid) var(--ease);
}
.h3-input::placeholder,
.h3-textarea::placeholder {
  color: var(--muted-200);
}
.h3-input:hover,
.h3-textarea:hover {
  border-color: rgba(200,168,75,0.28);
}
.h3-input:focus,
.h3-textarea:focus {
  border-color: rgba(200,168,75,0.55);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.1);
  background: var(--dark-400);
}
.h3-textarea {
  resize: vertical;
  min-height: 96px;
}

/* Submit tlačítko */
.h3-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.72rem 1.75rem;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 55%, var(--gold-600) 100%);
  color: var(--dark-base);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(200,168,75,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transition:
    transform  var(--t-mid) var(--ease-spring),
    box-shadow var(--t-mid) var(--ease),
    filter     var(--t-fast) var(--ease);
}
.h3-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,168,75,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}
.h3-btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(200,168,75,0.25);
}

/* Alert */
.alert-danger {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--r-sm);
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--error-text);
  margin-bottom: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────────────────
   12. NEWSLETTER SEKCE
   ───────────────────────────────────────────────────────────────────────────── */
.h3-newsletter {
  position: relative;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(90,66,0,0.85)   0%,
      rgba(50,38,0,0.92)   40%,
      rgba(20,18,16,0.95)  100%
    ),
    var(--dark-700);
}
/* Kruhový pattern */
.h3-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(200,168,75,0.06) 0%,
    transparent 55%
  );
  pointer-events: none;
}
/* Zlatá čára nahoře */
.h3-newsletter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
  pointer-events: none;
}

.h3-newsletter > div { position: relative; z-index: 1; }

.h3-newsletter h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--cream-200);
  margin-bottom: 0.6rem;
}
.h3-newsletter > div > p {
  font-size: 0.92rem;
  color: rgba(240,232,216,0.65);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.h3-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}
@media (min-width: 580px) {
  .h3-newsletter-form { flex-direction: row; }
}

.h3-newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,168,75,0.32);
  border-radius: var(--r-sm);
  padding: 0.7rem var(--space-md);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--cream-300);
  outline: none;
  transition:
    border-color var(--t-mid) var(--ease),
    background   var(--t-mid) var(--ease);
  min-width: 0;
}
.h3-newsletter-input::placeholder { color: rgba(240,232,216,0.42); }
.h3-newsletter-input:focus {
  border-color: rgba(200,168,75,0.6);
  background: rgba(255,255,255,0.1);
}

.h3-newsletter-note {
  font-size: 0.74rem;
  color: rgba(240,232,216,0.42);
  margin-top: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────────────────
   13. FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.h3-footer {
  background: #070605;
  border-top: 1px solid rgba(200,168,75,0.12);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.h3-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Top row */
.h3-footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}
@media (min-width: 600px) {
  .h3-footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.h3-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.h3-footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  object-fit: contain;
  border: 1px solid rgba(200,168,75,0.2);
}
.h3-footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sociální sítě */
.h3-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.h3-social-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--dark-600);
  border: 1px solid rgba(200,168,75,0.14);
  color: var(--muted-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  text-decoration: none;
  transition:
    background    var(--t-mid) var(--ease),
    border-color  var(--t-mid) var(--ease),
    color         var(--t-mid) var(--ease),
    transform     var(--t-mid) var(--ease-spring);
}
.h3-social-btn:hover {
  background: rgba(200,168,75,0.12);
  border-color: rgba(200,168,75,0.38);
  color: var(--gold-400);
  transform: translateY(-2px);
}
.h3-social-btn svg { flex-shrink: 0; }

/* Bottom row */
.h3-footer-bottom {
  border-top: 1px solid rgba(200,168,75,0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .h3-footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.h3-footer-copy {
  font-size: 0.74rem;
  color: var(--muted-200);
  line-height: 1.5;
}

.h3-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
  align-items: center;
}
.h3-footer-links a {
  font-size: 0.71rem;
  color: var(--muted-200);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.h3-footer-links a:hover { color: var(--gold-400); }

/* ─────────────────────────────────────────────────────────────────────────────
   14. COOKIE / PROMO BANNER
   ───────────────────────────────────────────────────────────────────────────── */
.banner-cookie {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 990;
  max-width: 680px;
  width: calc(100% - var(--space-xl));
  background: var(--dark-600);
  border: 1px solid rgba(200,168,75,0.38);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.75), 0 0 0 1px rgba(200,168,75,0.1);
  padding: var(--space-xl) var(--space-2xl);
  color: var(--cream-300);
  position: relative;
}
.banner-cookie h2 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
}
.banner-cookie > p {
  font-size: 0.85rem;
  color: var(--muted-100);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}
.close-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
}
.disbale-cookie {
  background: transparent;
  border: none;
  color: var(--muted-100);
  font-size: 1rem;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
  padding: 4px;
}
.disbale-cookie:hover { color: var(--gold-400); }
.front-banner-des {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────────────────────
   15. SLICK ARROWS — globální override
   ───────────────────────────────────────────────────────────────────────────── */
.slide-arrow {
  position: absolute !important;
  z-index: 10;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: var(--dark-500) !important;
  border: 1px solid rgba(200,168,75,0.32) !important;
  color: var(--gold-500) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    background   var(--t-mid) var(--ease),
    color        var(--t-mid) var(--ease),
    border-color var(--t-mid) var(--ease),
    transform    var(--t-mid) var(--ease-spring) !important;
  box-shadow: var(--shadow-sm);
}
.slide-arrow:hover {
  background: var(--gold-500) !important;
  color: var(--dark-base) !important;
  border-color: var(--gold-500) !important;
  transform: scale(1.1) !important;
}
.slide-arrow i { pointer-events: none; }
.prev-arrow { left: -6px; top: 38%; }
.next-arrow { right: -6px; top: 38%; left: auto; }

/* ─────────────────────────────────────────────────────────────────────────────
   16. PAGINACE
   ───────────────────────────────────────────────────────────────────────────── */
.pagination { gap: 3px; }
.pagination .page-link {
  background: var(--dark-600) !important;
  color: var(--muted-100) !important;
  border-color: rgba(200,168,75,0.18) !important;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--r-sm) !important;
  transition: all var(--t-fast) var(--ease);
}
.pagination .page-link:hover {
  background: rgba(200,168,75,0.1) !important;
  color: var(--gold-300) !important;
  border-color: rgba(200,168,75,0.35) !important;
}
.pagination .page-item.active .page-link {
  background: var(--gold-500) !important;
  border-color: var(--gold-500) !important;
  color: var(--dark-base) !important;
}
.pagination .page-link:focus {
  box-shadow: none !important;
  outline: none;
}
p.small.text-muted { display: none; }

/* ─────────────────────────────────────────────────────────────────────────────
   17. HELPER TŘÍDY
   ───────────────────────────────────────────────────────────────────────────── */
.min-w-40px { min-width: 40px; }
.w-100 { width: 100%; }

/* ─────────────────────────────────────────────────────────────────────────────
   18. FOCUS / ACCESSIBILITY
   ───────────────────────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid rgba(200,168,75,0.7);
  outline-offset: 3px;
}
.h3-btn:focus-visible,
.h3-input:focus-visible,
.h3-textarea:focus-visible {
  outline: 2px solid rgba(200,168,75,0.7);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   19. ANIMACE
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes h3-spin {
  to { transform: rotate(360deg); }
}
@keyframes h3-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes h3-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Shimmer efekt na load */
.h3-loading {
  background: linear-gradient(90deg,
    var(--dark-600) 25%,
    var(--dark-400) 50%,
    var(--dark-600) 75%
  );
  background-size: 200% 100%;
  animation: h3-shimmer 1.6s ease-in-out infinite;
  border-radius: var(--r-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   20. RESPONSIVE FINAL TWEAKS
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 479px) {
  .h3-hero-inner  { padding: var(--space-2xl) var(--space-md); gap: var(--space-2xl); }
  .h3-slider-frame { width: min(280px, 90vw); }
  .h3-hero-actions { flex-direction: column; align-items: stretch; }
  .h3-hero-actions .h3-btn { justify-content: center; }
  .h3-search-bar { max-width: 100%; }
  .h3-section-inner { padding: 0 var(--space-md); }
  .h3-contact-info,
  .h3-contact-form,
  .h3-mission-text,
  .h3-mission-quote { padding: var(--space-lg); }
}

@media (min-width: 480px) and (max-width: 767px) {
  .h3-hero-inner { padding: var(--space-2xl) var(--space-lg); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .h3-hero-inner { padding: var(--space-3xl) var(--space-xl); }
  .h3-slider-frame { width: min(300px, 100%); }
}

@media (min-width: 1280px) {
  .h3-hero-title { font-size: 3.9rem; }
}

/* Jemné úpravy pro extra velké displeje */
@media (min-width: 1600px) {
  .h3-section-inner { max-width: 1440px; }
  .h3-nav-inner     { max-width: 1440px; }
  .h3-hero-inner    { max-width: 1440px; }
  .h3-footer-inner  { max-width: 1440px; }
}

/* =============================================================================
   MOBILE APP EXPERIENCE — přidáno k home3.css
   Cíl: nativní iOS/Android look & feel na mobilech
   Breakpoint: < 768px = mobilní app UI
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────────────────────
   M0. GLOBÁLNÍ MOBILE NASTAVENÍ
   ───────────────────────────────────────────────────────────────────────────── */

/* Žádný tap highlight */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Plynulé scrollování na iOS */
html {
  -webkit-overflow-scrolling: touch;
}

/* Touch action — zrychlení odezvy */
a, button, [role="button"] {
  touch-action: manipulation;
}

/* ─────────────────────────────────────────────────────────────────────────────
   M1. BOTTOM NAV BAR — pouze mobil
   ───────────────────────────────────────────────────────────────────────────── */

/* Bottom nav kontejner */
.h3-bottom-nav {
  display: none; /* skrytý na desktopu */
}

@media (max-width: 767px) {
  .h3-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    height: 62px;
    background: rgba(10, 9, 7, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid rgba(200, 168, 75, 0.2);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    align-items: stretch;
    box-shadow:
      0 -8px 32px rgba(0, 0, 0, 0.65),
      0 -1px 0 rgba(200, 168, 75, 0.1);
  }

  /* Prostor pro body aby nebyl obsah za bottom nav */
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px));
  }

  /* Nav item */
  .h3-bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px 6px;
    text-decoration: none;
    color: var(--muted-200);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    background: transparent;
    cursor: pointer;
    transition:
      color     0.2s ease,
      transform 0.15s var(--ease-spring);
    -webkit-user-select: none;
    user-select: none;
    position: relative;
  }

  .h3-bn-item:hover,
  .h3-bn-item.active {
    color: var(--gold-400);
    text-decoration: none;
  }

  .h3-bn-item:active {
    transform: scale(0.92);
  }

  /* Aktivní indikátor — tečka nahoře */
  .h3-bn-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  }

  /* Ikona v bottom nav */
  .h3-bn-icon {
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s var(--ease-spring);
  }
  .h3-bn-item.active .h3-bn-icon,
  .h3-bn-item:hover .h3-bn-icon {
    transform: scale(1.15) translateY(-1px);
  }

  /* Prostřední FAB tlačítko — Vytvořit vzpomínku */
  .h3-bn-fab {
    flex: 0 0 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    position: relative;
    margin: 0 4px;
  }

  .h3-bn-fab-btn {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-400) 0%, var(--gold-500) 50%, var(--gold-700) 100%);
    border: 2px solid rgba(200, 168, 75, 0.5);
    box-shadow:
      0 4px 20px rgba(200, 168, 75, 0.5),
      0 0 0 4px rgba(10, 9, 7, 0.9),
      0 0 0 5px rgba(200, 168, 75, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-base);
    font-size: 1.3rem;
    cursor: pointer;
    text-decoration: none;
    transition:
      transform    0.2s var(--ease-spring),
      box-shadow   0.2s ease;
  }
  .h3-bn-fab-btn:hover,
  .h3-bn-fab-btn:active {
    transform: translateX(-50%) scale(1.1);
    box-shadow:
      0 8px 28px rgba(200, 168, 75, 0.65),
      0 0 0 4px rgba(10, 9, 7, 0.9),
      0 0 0 5px rgba(200, 168, 75, 0.35);
    color: var(--dark-base);
    text-decoration: none;
  }
  .h3-bn-fab-btn:active {
    transform: translateX(-50%) scale(0.95);
  }

  .h3-bn-fab-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-top: 40px;
    white-space: nowrap;
    text-align: center;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M2. HEADER NA MOBILU — zjednodušení
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* Schovej hamburger toggle — není potřeba, máme bottom nav */
  .h3-mobile-toggle { display: none !important; }

  /* Mobilní menu (hamburger) skrytý — nahrazuje bottom nav */
  .h3-mobile-menu  { display: none !important; }

  /* Nav bar kompaktnější */
  .h3-nav {
    height: 56px;
  }
  :root { --nav-h: 56px; }

  .h3-nav-inner {
    padding: 0 var(--space-md);
  }

  /* Logo text zmenšen */
  .h3-logo-text {
    font-size: 1.1rem;
  }
  .h3-logo-img {
    width: 36px;
    height: 36px;
  }

  /* Tlačítko přihlásit se — kompaktní v pravém rohu */
  .h3-nav-login-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
    color: var(--dark-base) !important;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--r-sm);
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(200,168,75,0.35);
    transition: transform 0.2s var(--ease-spring);
  }
  .h3-nav-login-mobile:hover { transform: scale(1.04); color: var(--dark-base) !important; text-decoration: none; }
  .h3-nav-login-mobile:active { transform: scale(0.97); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M3. HERO — MOBILNÍ APP STYL
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {

  .h3-hero {
    min-height: calc(100svh - var(--nav-h));
    padding: 0;
    align-items: flex-start;
  }

  .h3-hero-inner {
    padding: var(--space-xl) var(--space-md) var(--space-2xl);
    gap: var(--space-xl);
    grid-template-columns: 1fr;
  }

  .h3-hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
    margin-bottom: var(--space-md);
  }

  .h3-hero-sub {
    font-size: 0.92rem;
    margin-bottom: var(--space-lg);
  }

  .h3-search-bar {
    border-radius: var(--r-md);
    max-width: 100%;
  }
  .h3-search-bar input { padding: 0.8rem 1rem; font-size: 0.95rem; }
  .h3-search-bar button { padding: 0.8rem 1.1rem; }

  .h3-hero-actions {
    flex-direction: row;
    gap: 0.65rem;
  }
  .h3-hero-actions .h3-btn {
    flex: 1;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    font-size: 0.82rem;
    border-radius: var(--r-md);
  }

  /* Slider — mobilní karta */
  .h3-hero-slider-wrap {
    justify-content: center;
  }
  .h3-slider-frame {
    width: min(260px, 75vw);
    aspect-ratio: 9 / 12;
    border-radius: var(--r-xl);
    box-shadow:
      0 28px 64px rgba(0, 0, 0, 0.8),
      0 0 0 1px rgba(200,168,75,0.2),
      0 8px 32px rgba(200,168,75,0.18);
  }

  /* Slider tlačítka větší (touch) */
  .h3-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .h3-slider-btn-prev { left: -14px; }
  .h3-slider-btn-next { right: -14px; }

  .h3-slider-dots { bottom: -26px; }
  .h3-dot { width: 10px; height: 10px; }
  .h3-dot.active { width: 26px; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M4. SECTION HLAVIČKY — mobilní
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .h3-section-inner {
    padding: 0 var(--space-md);
  }

  .h3-section-head {
    margin-bottom: var(--space-xl);
    text-align: left;
  }
  .h3-section-head .h3-label {
    justify-content: flex-start;
  }
  .h3-section-head .h3-label::before { display: none; }
  .h3-section-head .h3-section-title { text-align: left; }
  .h3-section-head > p { text-align: left; margin-left: 0; }
  .h3-divider { margin-left: 0; }

  .h3-features,
  .h3-testimonials,
  .h3-about,
  .h3-vcards,
  .h3-faq,
  .h3-contact {
    padding: var(--space-2xl) 0;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M5. FEATURE KARTY — app styl (horizontální scroll)
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Vypnout slick, zapnout native scroll */
  .h3-features .feature-slider.slick-initialized .slick-list {
    overflow: visible !important;
  }

  /* Vlastní horizontální scroll na mobilu */
  .h3-mobile-cards-scroll {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    padding: var(--space-sm) var(--space-md) var(--space-lg);
    margin: 0 calc(-1 * var(--space-md));
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .h3-mobile-cards-scroll::-webkit-scrollbar { display: none; }

  .h3-mobile-cards-scroll .h3-feature-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-radius: var(--r-xl);
    padding: var(--space-xl) var(--space-lg);
  }

  /* Feature karta — app design */
  .h3-feature-card {
    border-radius: var(--r-xl);
    border-color: rgba(200,168,75,0.18);
    background: var(--dark-600);
  }
  .h3-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: var(--space-md);
  }
  .h3-feature-card h3 { font-size: 0.95rem; }
  .h3-feature-card p  { font-size: 0.82rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M6. TESTIMONIALS — mobilní karty
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .h3-testi-card {
    border-radius: var(--r-xl);
    padding: var(--space-lg);
    border-color: rgba(200,168,75,0.18);
  }
  .h3-testi-text { font-size: 0.97rem; }

  /* Horizontální scroll stejně jako features */
  .h3-mobile-testi-scroll {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    padding: var(--space-sm) var(--space-md) var(--space-lg);
    margin: 0 calc(-1 * var(--space-md));
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .h3-mobile-testi-scroll::-webkit-scrollbar { display: none; }
  .h3-mobile-testi-scroll .h3-testi-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M7. O NÁS — stack karty
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .h3-about { background: var(--dark-700); }

  .h3-about-cards {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
  }

  .h3-about-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    border-color: rgba(200,168,75,0.18);
    /* iOS-style card shadow */
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 1px 0 rgba(200,168,75,0.12);
  }
  .h3-about-card-img { height: 160px; }
  .h3-about-card-body { padding: var(--space-lg); }
  .h3-about-card-body h4 { font-size: 1rem; }

  /* Hodnoty — 3 sloupce na mobilu */
  .h3-values {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
  }
  .h3-value {
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--r-lg);
  }
  .h3-value-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    margin-bottom: var(--space-sm);
  }
  .h3-value h4 { font-size: 0.78rem; }
  .h3-value p  { font-size: 0.75rem; display: none; } /* skrytý popis, app styl */

  /* Mise — stack */
  .h3-mission {
    grid-template-columns: 1fr;
    border-radius: var(--r-xl);
  }
  .h3-mission-text {
    padding: var(--space-xl) var(--space-lg);
    gap: var(--space-md);
  }
  .h3-mission-text h3 { font-size: 1.2rem; }
  .h3-mission-text > p { font-size: 0.86rem; }
  .h3-mission-actions {
    flex-direction: row;
    gap: var(--space-sm);
  }
  .h3-mission-actions .h3-btn {
    flex: 1;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.65rem var(--space-sm);
  }
  .h3-mission-quote {
    padding: var(--space-xl) var(--space-lg);
    min-height: 160px;
  }
  .h3-mission-quote blockquote { font-size: 1rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M8. VCARD SLIDER — mobilní
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .h3-vcards {
    padding-bottom: var(--space-2xl);
  }
  .h3-vcard-wrap .center-slider .slick-slide {
    padding: 0 6px;
    opacity: 0.45;
    transform: scale(0.9);
  }
  .h3-vcard-wrap .center-slider .slick-center {
    opacity: 1;
    transform: scale(1);
  }
  .vcard-card {
    border-radius: var(--r-lg);
  }

  .h3-vcard-more { margin-top: var(--space-xl); }
  .h3-vcard-more .h3-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.85rem var(--space-xl);
    font-size: 0.88rem;
    border-radius: var(--r-md);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M9. FAQ — app styl
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .h3-faq-list {
    gap: 0.5rem;
  }

  .h3-faq-item {
    border-radius: var(--r-lg);
    background: var(--dark-600);
    /* iOS-style subtle shadow */
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }

  .h3-faq-btn {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9rem;
    min-height: 52px; /* touch target */
  }

  .h3-faq-answer {
    padding: 0 var(--space-lg) var(--space-md);
  }
  .h3-faq-answer p { font-size: 0.86rem; padding-top: var(--space-sm); }

  .h3-faq-cta { margin-top: var(--space-xl); }
  .h3-faq-cta .h3-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 0.85rem;
    border-radius: var(--r-md);
    font-size: 0.88rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M10. KONTAKT — mobilní stack
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .h3-contact-grid {
    grid-template-columns: 1fr;
    border-radius: var(--r-xl);
    overflow: hidden;
  }

  .h3-contact-info {
    padding: var(--space-xl) var(--space-lg);
    border-right: none;
    border-bottom: 1px solid rgba(200,168,75,0.12);
    gap: var(--space-md);
  }
  .h3-contact-info > div:first-child h3 { font-size: 1.2rem; }

  .h3-contact-item {
    padding: 12px;
    border-radius: var(--r-md);
    min-height: 52px; /* touch target */
    align-items: center;
  }
  .h3-contact-item-value { font-size: 0.84rem; word-break: break-word; }

  .h3-contact-form {
    padding: var(--space-xl) var(--space-lg);
  }
  .h3-contact-form > h3 { font-size: 1.2rem; margin-bottom: var(--space-lg); }

  .h3-form-row { grid-template-columns: 1fr; }

  .h3-input,
  .h3-textarea {
    padding: 0.8rem 1rem;
    font-size: 1rem; /* iOS nezoomuje při font-size >= 16px */
    border-radius: var(--r-md);
    min-height: 48px;
  }
  .h3-textarea { min-height: 110px; }

  .h3-btn-submit {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
    font-size: 0.92rem;
    border-radius: var(--r-md);
    min-height: 50px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M11. NEWSLETTER — mobilní
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .h3-newsletter {
    padding: var(--space-2xl) var(--space-md);
  }
  .h3-newsletter h2 { font-size: 1.5rem; }
  .h3-newsletter-form {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .h3-newsletter-input {
    padding: 0.85rem var(--space-md);
    font-size: 1rem; /* bez iOS zoom */
    border-radius: var(--r-md);
    min-height: 48px;
  }
  .h3-newsletter-form .h3-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
    border-radius: var(--r-md);
    min-height: 48px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M12. FOOTER — mobilní
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .h3-footer {
    padding: var(--space-xl) var(--space-md) var(--space-md);
  }
  .h3-footer-top { flex-direction: column; gap: var(--space-md); }
  .h3-footer-bottom { flex-direction: column; gap: var(--space-sm); }

  .h3-footer-links {
    gap: 0.25rem 0.9rem;
  }
  .h3-footer-links a {
    font-size: 0.69rem;
  }
  .h3-footer-copy { font-size: 0.72rem; }

  /* Social tlačítka větší pro touch */
  .h3-social-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    border-radius: 10px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M13. SCROLL INDIKÁTORY — "přejeď dolů" hint
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Jemný fade-out na konci horizontálně scrollovatelných seznamů */
  .h3-mobile-cards-scroll-wrap,
  .h3-mobile-testi-scroll-wrap {
    position: relative;
  }
  .h3-mobile-cards-scroll-wrap::after,
  .h3-mobile-testi-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: var(--space-lg);
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--dark-700));
    pointer-events: none;
    z-index: 2;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M14. PŘECHODY SEKCÍ — barevné oddělení na mobilu
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Střídání pozadí sekcí — jako stránky v appce */
  .h3-features    { background: var(--dark-800); }
  .h3-testimonials { background: var(--dark-base); }
  .h3-about       { background: var(--dark-700); }
  .h3-vcards      { background: var(--dark-800); }
  .h3-faq         { background: var(--dark-700); }
  .h3-contact     { background: var(--dark-base); }

  /* Jemná horní hranice každé sekce */
  .h3-features::before,
  .h3-about::before,
  .h3-vcards::before,
  .h3-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--space-md);
    right: var(--space-md);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,168,75,0.15), transparent);
    pointer-events: none;
    z-index: 0;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M15. DATA-REVEAL — rychlejší na mobilu
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  [data-reveal] {
    transition:
      opacity  0.45s var(--ease-out),
      transform 0.45s var(--ease-out);
  }
  /* Menší offset na mobilu */
  [data-reveal]:not(.revealed) {
    transform: translateY(14px);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M16. LANDSCAPE MOBIL
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) and (orientation: landscape) {
  .h3-hero { min-height: auto; padding: var(--space-lg) 0; }
  .h3-hero-inner { padding: var(--space-lg) var(--space-md); gap: var(--space-lg); }
  .h3-slider-frame { width: min(180px, 35vw); }
  .h3-hero-title { font-size: 1.7rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   M17. BEZPEČNÁ ZÓNA — iPhone notch / Dynamic Island
   ───────────────────────────────────────────────────────────────────────────── */
@supports (padding-top: env(safe-area-inset-top)) {
  @media (max-width: 767px) {
    .h3-nav {
      padding-top: env(safe-area-inset-top, 0px);
      height: calc(56px + env(safe-area-inset-top, 0px));
    }
    :root {
      --nav-h: calc(56px + env(safe-area-inset-top, 0px));
    }
    .h3-bottom-nav {
      padding-bottom: env(safe-area-inset-bottom, 0px);
      height: calc(62px + env(safe-area-inset-bottom, 0px));
    }
    body {
      padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px));
    }
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE VISIBILITY HELPERS
   ───────────────────────────────────────────────────────────────────────────── */
.h3-desktop-only { display: block; }
.h3-mobile-only  { display: none;  }

@media (max-width: 767px) {
  .h3-desktop-only { display: none !important;  }
  .h3-mobile-only  { display: block !important; }
}

/* About subtitle */
.h3-about-subtitle {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream-200);
  text-align: center;
  margin-bottom: var(--space-xl);
}
@media (max-width: 767px) {
  .h3-about-subtitle {
    text-align: left;
    font-size: 1.15rem;
  }
}
/* =============================================================================
   CHYBIS.CZ — home3-enhance.css
   Doplňkové vylepšení designu · Přidat ZA home3.css
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────────────────────
   1. DESIGN TOKENY — rozšíření
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  --gold-glow-strong: rgba(200, 168, 75, 0.38);
  --gold-glow-xl:     rgba(200, 168, 75, 0.55);
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. HERO — dramatičtější atmosféra
   ───────────────────────────────────────────────────────────────────────────── */

.h3-hero::before {
  background:
    radial-gradient(ellipse 70% 60% at 75% 35%, rgba(200,168,75,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 18% 72%, rgba(139,105,20,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 50% 10%, rgba(200,168,75,0.05) 0%, transparent 50%);
}

.h3-hero::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.055'/%3E%3C/svg%3E");
}

/* Hero title — živý shimmer */
.h3-hero-title {
  background: linear-gradient(
    135deg,
    var(--cream-100)  0%,
    var(--gold-200)   25%,
    var(--gold-400)   50%,
    var(--gold-300)   72%,
    var(--gold-600)   100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: title-shimmer 6s linear infinite;
}

@keyframes title-shimmer {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.h3-hero-sub {
  font-size: 1.05rem;
  color: var(--cream-400);
  line-height: 1.78;
}

/* Slider frame — silnější záře */
.h3-slider-frame {
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(200,168,75,0.18),
    0 0 60px rgba(200,168,75,0.14),
    var(--shadow-gold);
  animation: float-up 7s ease-in-out infinite;
}

@keyframes float-up {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.h3-float-badge {
  border-color: rgba(200,168,75,0.45);
  box-shadow: var(--shadow-md), 0 0 20px rgba(200,168,75,0.12);
}

.h3-badge-value { color: var(--gold-200); }

/* ─────────────────────────────────────────────────────────────────────────────
   3. TYPOGRAFIE
   ───────────────────────────────────────────────────────────────────────────── */

.h3-section-title {
  background: linear-gradient(
    135deg,
    var(--gold-300)  0%,
    var(--gold-100)  40%,
    var(--gold-400)  70%,
    var(--cream-400) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: title-shimmer 8s linear infinite;
}

.h3-label::before,
.h3-label::after { width: 36px; }

.h3-section-head > p {
  font-size: 1rem;
  color: var(--cream-500);
  max-width: 560px;
}

.h3-divider {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), var(--gold-300), transparent);
  margin: 1.2rem auto 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   4. TLAČÍTKA
   ───────────────────────────────────────────────────────────────────────────── */

.h3-btn-gold {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-200) 45%, var(--gold-500) 80%, var(--gold-700) 100%);
  background-size: 200% auto;
  letter-spacing: 0.03em;
  transition: background-position var(--t-slow) var(--ease), transform var(--t-mid) var(--ease-spring), box-shadow var(--t-mid) var(--ease);
}

.h3-btn-gold:hover {
  background-position: right center;
  box-shadow: 0 8px 28px rgba(200,168,75,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-3px) scale(1.02);
  color: var(--dark-base);
}

.h3-btn-ghost {
  border-color: rgba(200,168,75,0.5);
  letter-spacing: 0.03em;
}

.h3-btn-ghost:hover {
  background: rgba(200,168,75,0.14);
  border-color: var(--gold-400);
  color: var(--gold-200);
  box-shadow: 0 0 20px rgba(200,168,75,0.15);
}

.h3-btn-submit {
  animation: gold-pulse 3s ease-in-out infinite;
}

@keyframes gold-pulse {
  0%, 100% { box-shadow: 0 3px 14px rgba(200,168,75,0.35), inset 0 1px 0 rgba(255,255,255,0.15); }
  50%       { box-shadow: 0 6px 24px rgba(200,168,75,0.55), inset 0 1px 0 rgba(255,255,255,0.2); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. FEATURE KARTY
   ───────────────────────────────────────────────────────────────────────────── */

.h3-feature-card {
  background: linear-gradient(145deg, rgba(28,25,20,0.95) 0%, rgba(20,18,14,0.98) 100%);
  border-color: rgba(200,168,75,0.16);
}

.h3-feature-card:hover {
  border-color: rgba(200,168,75,0.5);
  background: linear-gradient(145deg, rgba(35,30,22,0.98) 0%, rgba(25,22,16,0.99) 100%);
  box-shadow: 0 0 0 1px rgba(200,168,75,0.2), 0 12px 40px rgba(200,168,75,0.18), 0 20px 60px rgba(0,0,0,0.65);
  transform: translateY(-6px);
}

.h3-feature-card::before {
  left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), var(--gold-200), transparent);
}

.h3-feature-icon {
  background: linear-gradient(135deg, rgba(200,168,75,0.18) 0%, rgba(200,168,75,0.08) 100%);
  border-color: rgba(200,168,75,0.28);
  box-shadow: 0 0 20px rgba(200,168,75,0.08);
  transition: border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-spring);
}

.h3-feature-card:hover .h3-feature-icon {
  border-color: rgba(200,168,75,0.6);
  box-shadow: 0 0 24px rgba(200,168,75,0.2);
  transform: scale(1.08) rotate(-2deg);
}

.h3-feature-card h3 {
  color: var(--cream-200);
  transition: color var(--t-mid) var(--ease);
}

.h3-feature-card:hover h3 { color: var(--gold-200); }

.h3-feature-card p {
  color: var(--muted-100);
  font-size: 0.88rem;
  line-height: 1.72;
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────────── */

.h3-testi-card {
  background: linear-gradient(145deg, rgba(26,24,18,0.97) 0%, rgba(18,16,12,0.99) 100%);
  border-color: rgba(200,168,75,0.16);
  position: relative;
  overflow: hidden;
}

.h3-testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 16px;
  font-family: var(--ff-display);
  font-size: 5rem;
  color: rgba(200,168,75,0.08);
  line-height: 1;
  pointer-events: none;
  transition: color var(--t-mid) var(--ease);
}

.h3-testi-card:hover::before { color: rgba(200,168,75,0.15); }

.h3-testi-card:hover {
  border-color: rgba(200,168,75,0.4);
  box-shadow: 0 0 0 1px rgba(200,168,75,0.18), 0 12px 40px rgba(200,168,75,0.15), 0 20px 50px rgba(0,0,0,0.6);
  transform: translateY(-5px);
}

.h3-testi-stars { color: var(--gold-300); font-size: 0.85rem; }
.h3-testi-text  { color: var(--cream-300); font-size: 1.05rem; line-height: 1.78; }
.h3-testi-name  { color: var(--gold-300); font-size: 0.9rem; font-weight: 700; }

/* ─────────────────────────────────────────────────────────────────────────────
   7. O NÁS
   ───────────────────────────────────────────────────────────────────────────── */

.h3-about-card {
  background: linear-gradient(180deg, rgba(26,24,18,0.97) 0%, rgba(18,16,12,0.99) 100%);
  border-color: rgba(200,168,75,0.18);
}

.h3-about-card:hover {
  border-color: rgba(200,168,75,0.5);
  box-shadow: 0 0 0 1px rgba(200,168,75,0.18), 0 16px 48px rgba(200,168,75,0.16), 0 24px 60px rgba(0,0,0,0.65);
  transform: translateY(-6px);
}

.h3-about-card-body h4 { font-size: 1.15rem; color: var(--gold-200); }
.h3-about-card-body p  { color: var(--cream-500); font-size: 0.88rem; line-height: 1.72; }

.h3-value {
  background: linear-gradient(145deg, rgba(24,22,16,0.97) 0%, rgba(18,16,12,0.99) 100%);
  border-color: rgba(200,168,75,0.14);
}

.h3-value:hover {
  border-color: rgba(200,168,75,0.42);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(200,168,75,0.12), 0 16px 40px rgba(0,0,0,0.55);
}

.h3-value-icon {
  background: linear-gradient(135deg, rgba(200,168,75,0.16) 0%, rgba(200,168,75,0.06) 100%);
  border-color: rgba(200,168,75,0.28);
  transition: border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-spring);
}

.h3-value:hover .h3-value-icon {
  border-color: rgba(200,168,75,0.55);
  box-shadow: 0 0 20px rgba(200,168,75,0.18);
  transform: scale(1.1);
}

.h3-value h4 { color: var(--cream-200); transition: color var(--t-mid) var(--ease); }
.h3-value:hover h4 { color: var(--gold-300); }

.h3-mission-quote blockquote {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--cream-200);
  line-height: 1.75;
}

.h3-mission-text h3 { color: var(--gold-200); }

/* ─────────────────────────────────────────────────────────────────────────────
   8. FAQ
   ───────────────────────────────────────────────────────────────────────────── */

.h3-faq-item {
  background: linear-gradient(145deg, rgba(24,22,16,0.97) 0%, rgba(18,16,12,0.99) 100%);
  border-color: rgba(200,168,75,0.16);
  transition: border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-spring);
}

.h3-faq-item:hover:not(.open) {
  border-color: rgba(200,168,75,0.28);
  transform: translateX(4px);
}

.h3-faq-item.open {
  border-color: rgba(200,168,75,0.45);
  box-shadow: 0 0 0 1px rgba(200,168,75,0.14), 0 8px 28px rgba(200,168,75,0.1), 0 12px 36px rgba(0,0,0,0.55);
}

.h3-faq-btn { font-size: 0.96rem; color: var(--cream-200); }
.h3-faq-item.open .h3-faq-btn { color: var(--gold-200); }
.h3-faq-answer p { color: var(--cream-500); font-size: 0.9rem; line-height: 1.78; }

/* ─────────────────────────────────────────────────────────────────────────────
   9. KONTAKT
   ───────────────────────────────────────────────────────────────────────────── */

.h3-contact-grid {
  border-color: rgba(200,168,75,0.22);
  box-shadow: 0 0 0 1px rgba(200,168,75,0.1), 0 20px 60px rgba(0,0,0,0.7), 0 0 80px rgba(200,168,75,0.06);
}

.h3-contact-info > div:first-child h3 { font-size: 1.55rem; color: var(--gold-200); }

.h3-contact-item {
  transition: border-color var(--t-mid) var(--ease), background var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-spring);
}

.h3-contact-item:hover {
  border-color: rgba(200,168,75,0.38);
  background: rgba(200,168,75,0.06);
  transform: translateX(4px);
}

.h3-contact-item-icon {
  background: linear-gradient(135deg, rgba(200,168,75,0.18) 0%, rgba(200,168,75,0.08) 100%);
  border-color: rgba(200,168,75,0.3);
  color: var(--gold-300);
}

.h3-input,
.h3-textarea {
  background: rgba(12,11,9,0.8);
  border-color: rgba(200,168,75,0.2);
}

.h3-input:focus,
.h3-textarea:focus {
  border-color: rgba(200,168,75,0.65);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.12), 0 4px 16px rgba(200,168,75,0.08);
  background: rgba(20,18,14,0.95);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   10. NEWSLETTER
   ───────────────────────────────────────────────────────────────────────────── */

.h3-newsletter {
  background:
    linear-gradient(135deg, rgba(100,74,0,0.9) 0%, rgba(55,42,0,0.95) 38%, rgba(18,16,12,0.98) 100%),
    var(--dark-700);
}

.h3-newsletter h2 {
  background: linear-gradient(135deg, var(--cream-100) 0%, var(--gold-300) 55%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}

.h3-newsletter > div > p { color: rgba(240,232,216,0.72); font-size: 0.95rem; }

.h3-newsletter-input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,168,75,0.4);
}

.h3-newsletter-input:focus {
  border-color: rgba(200,168,75,0.72);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.12);
}

/* ─────────────────────────────────────────────────────────────────────────────
   11. FOOTER
   ───────────────────────────────────────────────────────────────────────────── */

.h3-footer {
  background: #050403;
  border-top-color: rgba(200,168,75,0.2);
}

.h3-footer-brand-name {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-200) 55%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h3-social-btn {
  width: 36px; height: 36px;
  background: rgba(20,18,14,0.8);
  border-color: rgba(200,168,75,0.2);
  transition: background var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease), color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-spring), box-shadow var(--t-mid) var(--ease);
}

.h3-social-btn:hover {
  background: rgba(200,168,75,0.15);
  border-color: rgba(200,168,75,0.55);
  color: var(--gold-300);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(200,168,75,0.2);
}

.h3-footer-links a {
  position: relative;
  transition: color var(--t-fast) var(--ease);
}

.h3-footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}

.h3-footer-links a:hover::after { transform: scaleX(1); }
.h3-footer-links a:hover { color: var(--gold-300); }

/* ─────────────────────────────────────────────────────────────────────────────
   12. NAV
   ───────────────────────────────────────────────────────────────────────────── */

.h3-nav { background: rgba(10, 9, 7, 0.94); }

.h3-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.7), 0 1px 0 rgba(200,168,75,0.16), 0 0 60px rgba(200,168,75,0.04);
}

.h3-nav-links > li > a { font-size: 0.82rem; letter-spacing: 0.02em; color: var(--cream-500); }
.h3-nav-links > li > a:hover,
.h3-nav-links > li > a.active { color: var(--gold-200); background: rgba(200,168,75,0.1); }

.h3-logo-text {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-200) 55%, var(--gold-100) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────────────────────────────────────
   13. SCROLL REVEAL
   ───────────────────────────────────────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }

/* ─────────────────────────────────────────────────────────────────────────────
   14. GLOBÁLNÍ
   ───────────────────────────────────────────────────────────────────────────── */

::selection {
  background: rgba(200,168,75,0.28);
  color: var(--cream-100);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark-800); }
::-webkit-scrollbar-thumb { background: rgba(200,168,75,0.3); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(200,168,75,0.5); }

/* ─────────────────────────────────────────────────────────────────────────────
   15. MOBILE — vypnout těžké efekty
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
  .h3-hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .h3-slider-frame { animation: none; }
  .h3-feature-card:hover  { transform: none; }
  .h3-about-card:hover    { transform: none; }
  .h3-testi-card:hover    { transform: none; }
  .h3-faq-item:hover:not(.open) { transform: none; }
  [data-reveal] { transition-duration: 0.45s; }
}
