/* === Inspirováno sladkadepilacefrydek.cz + AASI vibe: bílé pozadí, zlatá #D4AF37, sans-serif, photo hero, animace === */

:root {
  --gold: #D4AF37;
  --gold-dark: #B8902B;
  --gold-soft: #F5EAC4;
  --black: #1A1A1A;
  --gray-900: #2C2C2C;
  --gray-700: #525252;
  --gray-500: #767676;
  --gray-300: #D1D1D1;
  --gray-100: #F4F4F4;
  --white: #FFFFFF;
  --cream: #E8D9C0;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--gray-900);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; margin-top: 2rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; margin-top: 1.5rem; }
p { margin-bottom: 1.25rem; color: var(--gray-700); }
ul { margin-bottom: 1.25rem; padding-left: 1.5rem; }
ul li { margin-bottom: 0.5rem; color: var(--gray-700); }
ul li::marker { color: var(--gold); }
a { color: var(--gold-dark); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--black); }
img { max-width: 100%; height: auto; display: block; }
figure { margin: 2rem 0; }
figure img { border-radius: 4px; width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 760px; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-intro { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-intro p { font-size: 1.1rem; }

/* === SCROLL FADE-IN === */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* === HEADER — transparent na hero, white po scrollu === */
.site-header {
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 0 2.5rem;
  transition: all 0.3s var(--ease);
}
.site-header .brand-name { color: var(--white); transition: color 0.3s var(--ease); }
.site-header .brand-sub { color: rgba(255,255,255,0.75); transition: color 0.3s var(--ease); }
.site-header .nav-link { color: rgba(255,255,255,0.92); transition: color 0.3s var(--ease); }
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.85rem 0;
}
.site-header.scrolled .brand-name { color: var(--black); }
.site-header.scrolled .brand-sub { color: var(--gray-500); }
.site-header.scrolled .nav-link { color: var(--gray-900); }
/* Posun obsahu pod fixed header (jen pro stránky bez hero) */
body.has-fixed-header { padding-top: 0; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; flex-direction: column; line-height: 1.1; transition: transform 0.3s var(--ease); }
.brand:hover { transform: translateY(-2px); }
.brand-name { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--black); letter-spacing: -0.01em; }
.brand-sub { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-500); margin-top: 4px; font-weight: 500; }
.main-nav { display: flex; gap: 2.25rem; align-items: center; }
.nav-link { color: var(--gray-900); font-weight: 500; font-size: 0.875rem; padding: 0.5rem 0; position: relative; transition: color 0.2s var(--ease); text-transform: uppercase; letter-spacing: 0.05em; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 2px; background: var(--gold); transition: left 0.3s var(--ease), right 0.3s var(--ease); }
.nav-link:hover::after, .nav-link.active::after { left: 0; right: 0; }
.nav-link:hover, .nav-link.active { color: var(--black); }
.nav-contact {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s var(--ease) !important;
  position: relative;
  overflow: hidden;
}
.nav-contact::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-dark);
  transition: left 0.4s var(--ease);
  z-index: 0;
}
.nav-contact:hover::before { left: 0; }
.nav-contact > * { position: relative; z-index: 1; }
.nav-contact::after { display: none; }
.nav-contact:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,175,55,0.4); }
.menu-toggle { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--black); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white) !important;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid var(--gold);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white) !important; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(212,175,55,0.3); }
.btn:hover::before { width: 300px; height: 300px; }
.btn:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--white) !important; border-color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--black) !important; border-color: var(--white); }
.btn-outline { background: transparent; color: var(--black) !important; border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white) !important; }

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  height: auto;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}
/* Žádný gradient — čistý cut mezi sliderem a následující sekcí */
.slides {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease), visibility 0s 1.2s;
  transform: scale(1);
  animation: kenBurns 12s ease-in-out infinite;
  animation-play-state: paused;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s var(--ease);
  animation-play-state: running;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.slide.active .slide-content {
  animation: slideUp 1s var(--ease) 0.3s both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,175,55,0.5);
}
.slide-logo {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}
.slide-content h1 { color: var(--white); margin-bottom: 1rem; }
.slide-content p { color: rgba(255,255,255,0.92); font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; font-weight: 300; }
.slide-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === Portrait slide (Alena welcome) — AASI-style multi-color animated gradient === */
.slide-portrait {
  background: #0A0606;
  overflow: hidden;
  animation: none !important;
}
/* Vrstva 1: hlavní multi-color horizontal animated gradient (AASI design — proměna barev) */
.slide-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    #1A0E1F 0%,
    #2D1428 18%,
    #4A1F2E 38%,
    #6B3018 58%,
    #8C5020 75%,
    #C8842A 92%,
    #2A1812 100%
  );
  background-size: 200% 100%;
  animation: aasiGradient 18s ease-in-out infinite;
  z-index: 0;
}
/* Žádný fade overlay — slide-portrait gradient zachován v plné kráse */

/* === Photo slidy: vyšší jas a saturace, světlejší overlay === */
.slide:not(.slide-portrait) {
  filter: saturate(1.25) brightness(1.12) contrast(1.05);
}
.slide:not(.slide-portrait) .slide-overlay {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.55) 100%) !important;
}
.slide:not(.slide-portrait) .slide-content {
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.8);
}
.slide:not(.slide-portrait) .slide-content h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
}
@keyframes aasiGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
/* Vrstva 2: jemný subtle highlight (bez asymetrických blobů) */
.slide-portrait .slide-portrait-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.18) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.slide-portrait .slide-overlay { display: none; }
.slide-content-portrait { z-index: 3 !important; }
.slide-portrait .slide-overlay { background: none; }

/* Watermark "ALENA" text v pozadí */
.watermark-text {
  position: absolute;
  bottom: -3vh;
  right: 2rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(7rem, 13vw, 11rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212,175,55,0.35);
  text-stroke: 1.5px rgba(212,175,55,0.35);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  animation: watermarkSlide 20s ease-in-out infinite;
  user-select: none;
  line-height: 1;
}
@media (max-width: 1000px) {
  .watermark-text { display: none; }
}
@keyframes watermarkSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-15px); }
}

.slide-content-portrait {
  flex-direction: row !important;
  text-align: left !important;
  align-items: center !important;
  gap: 5rem;
  max-width: 1200px !important;
  z-index: 2;
  padding: 0 2rem;
}

/* Photo s blob mask */
.slide-portrait-photo {
  flex: 0 0 460px;
  position: relative;
  animation: photoFloat 7s ease-in-out infinite;
}
@keyframes photoFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(0.4deg); }
}
.slide-portrait-photo img {
  width: 100%;
  aspect-ratio: 5/8;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  filter: brightness(1.05) contrast(1.05);
}

/* Badge 15 let */
.badge-15 {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 130px; height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(212,175,55,0.4), 0 0 0 6px rgba(212,175,55,0.15);
  text-align: center;
  color: var(--black);
  animation: badgePop 1s var(--ease-bounce) 0.8s both, badgeFloat 5s ease-in-out infinite 1.5s;
  transform-origin: center;
}
@keyframes badgePop {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-top: 4px;
}

/* Text strana */
.slide-portrait-text { flex: 1; text-align: left; }
.slide-portrait-text .slide-eyebrow {
  margin: 0 0 1.5rem 0;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
}
.slide-portrait-text h1 {
  text-align: left;
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 0.25rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.signature-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--gold);
  margin: 0 0 2rem 0 !important;
  font-weight: 400;
  line-height: 1.2;
}
.signature-line em { font-style: normal; font-weight: 700; color: var(--white); position: relative; padding: 0 4px; }
.signature-line em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 6px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.4;
}
.lead-text {
  font-size: 1.1rem !important;
  line-height: 1.7;
  color: rgba(255,255,255,0.85) !important;
  max-width: 540px;
  margin-bottom: 1rem !important;
}
.signature {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 2rem 0 !important;
  line-height: 1;
  position: relative;
  display: inline-block;
}
.signature::after {
  content: '';
  display: block;
  width: 70%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-top: 4px;
}
.slide-portrait-text .slide-cta { justify-content: flex-start; margin-top: 0.5rem; }

@media (max-width: 1000px) {
  .slide-content-portrait { flex-direction: column !important; justify-content: flex-start !important; text-align: center !important; gap: 1.5rem; padding-top: 5rem; padding-bottom: 2rem; }
  .slide-portrait-photo { flex: 0 0 auto; max-width: 280px; }
  .slide-portrait-photo img { aspect-ratio: 5/8 !important; object-position: center center !important; }
  .badge-15 { width: 100px; height: 100px; bottom: 0; right: -5px; }
  .badge-num { font-size: 2.2rem; }
  .badge-label { font-size: 0.55rem; }
  .slide-portrait-text { text-align: center; }
  .slide-portrait-text .slide-eyebrow,
  .slide-portrait-text h1,
  .signature-line,
  .signature { text-align: center; }
  .signature { display: block; }
  .signature::after { margin-left: auto; margin-right: auto; }
  .slide-portrait-text p { margin-left: auto; margin-right: auto; }
  .slide-portrait-text .slide-cta { justify-content: center; }
  .watermark-text { font-size: 24vw; bottom: -5vh; }
}

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-weight: 300;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.1); }
.slider-arrow-prev { left: 2rem; }
.slider-arrow-next { right: 2rem; }
.slider-dots {
  position: absolute;
  bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.75rem;
  z-index: 5;
}
.dot {
  width: 36px; height: 3px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
  padding: 0;
  border-radius: 2px;
}
.dot.active { background: var(--gold); width: 60px; }
.dot:hover { background: rgba(255,255,255,0.7); }

/* === Žádné rozostření — sekce přechází ostře === */
.big-cards {
  position: relative;
  background: var(--cream) !important;
  padding-top: 6rem !important;
}

/* === BIG CARDS (photo cards) — clean solid cream === */
.big-cards { padding: 6rem 0; background: var(--cream); position: relative; }
.big-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) {
  .big-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 600px) {
  .big-cards-grid { grid-template-columns: 1fr; }
}
.photo-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  color: var(--white) !important;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  cursor: pointer;
}
.photo-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.2); }
.photo-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.photo-card:hover .photo-card-img { transform: scale(1.12); }
.photo-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.8) 100%);
  transition: background 0.4s var(--ease);
}
.photo-card:hover .photo-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.92) 100%);
}
.photo-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  z-index: 2;
  text-align: left;
  transform: translateY(0);
  transition: transform 0.5s var(--ease);
}
.photo-card:hover .photo-card-body { transform: translateY(-8px); }
.photo-card-logo {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: transform 0.4s var(--ease);
}
.photo-card:hover .photo-card-logo { transform: scale(1.05); }
.photo-card h2 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.5rem; }
.photo-card p { color: rgba(255,255,255,0.9); font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.5; }
.photo-card-arrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s var(--ease);
}
.photo-card:hover .photo-card-arrow { color: var(--white); border-color: var(--white); padding-left: 8px; }

/* === WORK GALLERY (Z mé práce) === */
.work-gallery {
  padding: 6rem 0;
  background: var(--cream);
}
.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.work-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s var(--ease, ease), box-shadow 0.3s var(--ease, ease);
}
.work-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease, ease);
}
.work-photo:hover img {
  transform: scale(1.06);
}
.work-photo figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.0) 100%);
  color: var(--white);
  padding: 1.25rem 1rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s var(--ease, ease);
}
.work-photo:hover figcaption {
  opacity: 1;
}
@media (max-width: 1100px) {
  .work-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .work-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .work-gallery-grid { grid-template-columns: 1fr; }
  .work-photo figcaption { opacity: 1; }
}

/* === ENERGY ORB (subtilní zdroj energie — rotace + měkká aura) === */
.kastan-decor {
  position: fixed;
  top: 96px;
  right: 28px;
  width: 110px;
  height: 110px;
  z-index: 60;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.4s var(--ease-bounce, ease);
  filter: drop-shadow(0 6px 18px rgba(193,120,15,0.28));
}

/* Měkká aura — žádné konkrétní paprsky, jen pulzující záře */
.kastan-decor .energy-rays {
  position: absolute;
  top: 50%; left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,205,90,0.45) 0%,
    rgba(255,205,90,0.18) 30%,
    rgba(255,205,90,0.06) 55%,
    rgba(255,205,90,0)    72%);
  pointer-events: none;
  z-index: 1;
  animation: auraPulse 3.2s ease-in-out infinite;
}

/* Samotný orb — viditelně rotuje díky asymetrickému highlightu */
.kastan-decor .energy-orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE08A 0%, #F2A93B 55%, #B26410 100%);
  box-shadow:
    0 0 18px rgba(242,169,59,0.55),
    inset 0 0 14px rgba(255,255,255,0.4),
    inset -8px -10px 20px rgba(40,20,5,0.45);
  display: block;
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
}
/* Rotující povrch — "kontinenty" planety */
.kastan-decor .energy-orb::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 40%, rgba(110,55,12,0.55) 0%, transparent 22%),
    radial-gradient(circle at 65% 28%, rgba(110,55,12,0.45) 0%, transparent 18%),
    radial-gradient(circle at 72% 68%, rgba(130,70,18,0.50) 0%, transparent 24%),
    radial-gradient(circle at 22% 72%, rgba(110,55,12,0.45) 0%, transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(155,90,30,0.30) 0%, transparent 30%);
  animation: planetSpin 9s linear infinite;
  z-index: 1;
}
/* Statický atmosférický highlight (světelný zdroj) + terminator */
.kastan-decor .energy-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 32%),
    radial-gradient(circle at 78% 80%, rgba(30,15,5,0.40) 0%, rgba(30,15,5,0) 55%);
  pointer-events: none;
  z-index: 2;
}
@keyframes planetSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.kastan-decor:hover {
  transform: scale(1.1);
}
.kastan-decor:hover .energy-orb::before { animation-duration: 3.5s; }
.kastan-decor:hover .energy-rays { animation-duration: 1.6s; }

@keyframes auraPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1.0; transform: translate(-50%, -50%) scale(1.08); }
}

.kastan-heart {
  position: absolute;
  top: 50%; left: 50%;
  width: 38%;
  aspect-ratio: 32 / 30;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease, ease), transform 0.4s var(--ease-bounce, ease);
  z-index: 5;
  filter:
    drop-shadow(0 1px 2px rgba(255,255,255,0.6))
    drop-shadow(0 3px 6px rgba(156,29,58,0.5))
    drop-shadow(0 6px 14px rgba(0,0,0,0.35));
}
.kastan-heart svg {
  width: 100%; height: 100%;
  display: block;
}
.kastan-decor:hover .kastan-heart {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: heartBeat 0.8s ease-in-out infinite 0.35s;
}
@keyframes heartBeat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}


/* === GEJZÍR ENERGIE (24 jiskřiček, jen při hoveru) === */
.kastan-decor .energy-burst {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 4;
}
.kastan-decor .energy-drop {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFFEF2 0%, #FFE08A 35%, #F2A93B 75%, rgba(178,100,16,0.0) 100%);
  box-shadow: 0 0 6px rgba(255,210,122,0.7), 0 0 12px rgba(255,210,122,0.35);
  filter: blur(0.3px);
  opacity: 0;
  transform: translate(-50%, -50%);
}
.kastan-decor .drop-1 { width: 4.3px; height: 4.3px; }
.kastan-decor .drop-2 { width: 4.9px; height: 4.9px; }
.kastan-decor .drop-3 { width: 2.5px; height: 2.5px; }
.kastan-decor .drop-4 { width: 5.0px; height: 5.0px; }
.kastan-decor .drop-5 { width: 5.5px; height: 5.5px; }
.kastan-decor .drop-6 { width: 3.7px; height: 3.7px; }
.kastan-decor .drop-7 { width: 3.9px; height: 3.9px; }
.kastan-decor .drop-8 { width: 3.5px; height: 3.5px; }
.kastan-decor .drop-9 { width: 3.0px; height: 3.0px; }
.kastan-decor .drop-10 { width: 3.8px; height: 3.8px; }
.kastan-decor .drop-11 { width: 3.7px; height: 3.7px; }
.kastan-decor .drop-12 { width: 3.5px; height: 3.5px; }
.kastan-decor .drop-13 { width: 3.9px; height: 3.9px; }
.kastan-decor .drop-14 { width: 5.0px; height: 5.0px; }
.kastan-decor .drop-15 { width: 4.3px; height: 4.3px; }
.kastan-decor .drop-16 { width: 5.0px; height: 5.0px; }
.kastan-decor .drop-17 { width: 5.1px; height: 5.1px; }
.kastan-decor .drop-18 { width: 2.7px; height: 2.7px; }
.kastan-decor .drop-19 { width: 4.5px; height: 4.5px; }
.kastan-decor .drop-20 { width: 5.4px; height: 5.4px; }
.kastan-decor .drop-21 { width: 4.1px; height: 4.1px; }
.kastan-decor .drop-22 { width: 4.6px; height: 4.6px; }
.kastan-decor .drop-23 { width: 3.6px; height: 3.6px; }
.kastan-decor .drop-24 { width: 3.7px; height: 3.7px; }
.kastan-decor:hover .drop-1 { animation: dropFly1 2.06s 0.26s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-2 { animation: dropFly2 2.77s 0.02s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-3 { animation: dropFly3 2.54s 0.03s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-4 { animation: dropFly4 2.53s 0.32s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-5 { animation: dropFly5 2.98s 0.35s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-6 { animation: dropFly6 2.99s 0.19s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-7 { animation: dropFly7 3.17s 0.20s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-8 { animation: dropFly8 3.15s 0.38s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-9 { animation: dropFly9 2.58s 0.22s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-10 { animation: dropFly10 2.10s 0.13s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-11 { animation: dropFly11 3.00s 0.32s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-12 { animation: dropFly12 2.21s 0.04s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-13 { animation: dropFly13 3.14s 0.24s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-14 { animation: dropFly14 2.15s 0.09s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-15 { animation: dropFly15 2.39s 0.05s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-16 { animation: dropFly16 2.64s 0.15s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-17 { animation: dropFly17 2.66s 0.14s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-18 { animation: dropFly18 2.05s 0.18s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-19 { animation: dropFly19 2.77s 0.29s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-20 { animation: dropFly20 1.83s 0.32s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-21 { animation: dropFly21 2.83s 0.45s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-22 { animation: dropFly22 3.06s 0.44s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-23 { animation: dropFly23 2.62s 0.30s cubic-bezier(.3,.05,.6,1) infinite; }
.kastan-decor:hover .drop-24 { animation: dropFly24 2.83s 0.29s cubic-bezier(.3,.05,.6,1) infinite; }
@keyframes dropFly1 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -17px), calc(-50% - 122px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -27px), calc(-50% + 538px)); opacity: 0; }
}
@keyframes dropFly2 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + 25px), calc(-50% - 147px)); opacity: 1; }
  100% { transform: translate(calc(-50% + 33px), calc(-50% + 483px)); opacity: 0; }
}
@keyframes dropFly3 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + 115px), calc(-50% - 166px)); opacity: 1; }
  100% { transform: translate(calc(-50% + 158px), calc(-50% + 589px)); opacity: 0; }
}
@keyframes dropFly4 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -51px), calc(-50% - 87px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -77px), calc(-50% + 538px)); opacity: 0; }
}
@keyframes dropFly5 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -0px), calc(-50% - 133px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -0px), calc(-50% + 475px)); opacity: 0; }
}
@keyframes dropFly6 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -42px), calc(-50% - 85px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -70px), calc(-50% + 404px)); opacity: 0; }
}
@keyframes dropFly7 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + 64px), calc(-50% - 153px)); opacity: 1; }
  100% { transform: translate(calc(-50% + 112px), calc(-50% + 451px)); opacity: 0; }
}
@keyframes dropFly8 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -116px), calc(-50% - 129px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -156px), calc(-50% + 472px)); opacity: 0; }
}
@keyframes dropFly9 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -64px), calc(-50% - 87px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -109px), calc(-50% + 400px)); opacity: 0; }
}
@keyframes dropFly10 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -56px), calc(-50% - 141px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -77px), calc(-50% + 599px)); opacity: 0; }
}
@keyframes dropFly11 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + 87px), calc(-50% - 148px)); opacity: 1; }
  100% { transform: translate(calc(-50% + 123px), calc(-50% + 681px)); opacity: 0; }
}
@keyframes dropFly12 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -73px), calc(-50% - 169px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -124px), calc(-50% + 468px)); opacity: 0; }
}
@keyframes dropFly13 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -77px), calc(-50% - 124px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -114px), calc(-50% + 584px)); opacity: 0; }
}
@keyframes dropFly14 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + 16px), calc(-50% - 155px)); opacity: 1; }
  100% { transform: translate(calc(-50% + 28px), calc(-50% + 432px)); opacity: 0; }
}
@keyframes dropFly15 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + 49px), calc(-50% - 163px)); opacity: 1; }
  100% { transform: translate(calc(-50% + 84px), calc(-50% + 703px)); opacity: 0; }
}
@keyframes dropFly16 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -82px), calc(-50% - 166px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -117px), calc(-50% + 620px)); opacity: 0; }
}
@keyframes dropFly17 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -55px), calc(-50% - 139px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -87px), calc(-50% + 458px)); opacity: 0; }
}
@keyframes dropFly18 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + 62px), calc(-50% - 82px)); opacity: 1; }
  100% { transform: translate(calc(-50% + 94px), calc(-50% + 472px)); opacity: 0; }
}
@keyframes dropFly19 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + 18px), calc(-50% - 74px)); opacity: 1; }
  100% { transform: translate(calc(-50% + 32px), calc(-50% + 683px)); opacity: 0; }
}
@keyframes dropFly20 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -56px), calc(-50% - 64px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -93px), calc(-50% + 689px)); opacity: 0; }
}
@keyframes dropFly21 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -4px), calc(-50% - 140px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -6px), calc(-50% + 720px)); opacity: 0; }
}
@keyframes dropFly22 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + 75px), calc(-50% - 137px)); opacity: 1; }
  100% { transform: translate(calc(-50% + 111px), calc(-50% + 691px)); opacity: 0; }
}
@keyframes dropFly23 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -29px), calc(-50% - 147px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -46px), calc(-50% + 575px)); opacity: 0; }
}
@keyframes dropFly24 {
  0%   { transform: translate(-50%, -50%); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(calc(-50% + -130px), calc(-50% - 130px)); opacity: 1; }
  100% { transform: translate(calc(-50% + -216px), calc(-50% + 679px)); opacity: 0; }
}

@media (max-width: 700px) {
  .kastan-decor { width: 70px; height: 70px; top: 78px; right: 12px; }
}

/* === POPTÁVKOVÝ FORMULÁŘ === */
.poptavka-section { padding: 4rem 0 6rem; background: var(--cream); }
.poptavka-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.poptavka-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); }
.poptavka-form label.full { grid-column: 1 / -1; }
.poptavka-form input, .poptavka-form textarea { padding: 0.75rem 1rem; border: 1px solid var(--gray-300); border-radius: 4px; font-size: 1rem; font-family: inherit; background: var(--white); color: var(--black); transition: border-color 0.2s; }
.poptavka-form input:focus, .poptavka-form textarea:focus { outline: none; border-color: var(--gold); }
.poptavka-form textarea { resize: vertical; min-height: 110px; }
.poptavka-form button[type="submit"] { grid-column: 1 / -1; justify-self: center; margin-top: 0.5rem; min-width: 240px; }
.poptavka-form button[type="submit"][disabled] { opacity: 0.6; cursor: progress; }
.poptavka-status { grid-column: 1 / -1; text-align: center; margin: 0.75rem 0 0; min-height: 1.25em; font-size: 0.95rem; color: var(--gray-700); }
.poptavka-fallback { text-align: center; margin-top: 1.5rem; color: var(--gray-700); font-size: 0.95rem; }
@media (max-width: 700px) { .poptavka-form { grid-template-columns: 1fr; padding: 1.5rem; } }

/* === BENEFITS STRIP (3 benefit cards místo content-intro) === */
.benefits-strip {
  padding: 4rem 0;
  background: var(--cream);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: 8px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: center;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.1); }
.benefit-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.benefit-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-700);
}

/* === FOOTER MINI LINKS (Ceník, Kontakt — nenápadné rychlé odkazy) === */
.footer-mini-links { padding: 3rem 0; background: var(--cream); border-top: 1px solid var(--gray-300); }
.mini-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.mini-link {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  text-decoration: none;
  color: var(--black) !important;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.mini-link:hover { transform: translateX(4px); border-left-color: var(--gold-dark); }
.mini-link strong { font-size: 1.1rem; margin-bottom: 0.25rem; color: var(--black); }
.mini-link span { font-size: 0.9rem; color: var(--gray-700); }

/* === ALT ROWS (alternující left-right layout pro service showcase) === */
.alt-rows { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 2rem; }
.alt-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  color: var(--black) !important;
  min-height: 420px;
}
.alt-row:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.alt-row.reverse { grid-template-columns: 1fr 1.2fr; }
.alt-row.reverse .alt-img { order: 2; }
.alt-row.reverse .alt-body { order: 1; }
.alt-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
}
.alt-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}
.alt-img-placeholder img {
  width: auto !important;
  height: 80px !important;
  max-width: 60% !important;
  opacity: 0.7;
}
.alt-body {
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.alt-body h3 {
  font-size: 2rem;
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--black);
}
.alt-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0 0 1.25rem;
}
.alt-cta {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .alt-row, .alt-row.reverse { grid-template-columns: 1fr; min-height: auto; }
  .alt-row.reverse .alt-img { order: 1; }
  .alt-row.reverse .alt-body { order: 2; }
  .alt-img { min-height: 240px; }
  .alt-body { padding: 1.75rem; }
}

/* === EXTRA SECTIONS (multi-section landing pro chodime-spolu) === */
.extra-section { padding: 6rem 0; background: var(--cream); position: relative; overflow: hidden; }
.extra-section-alt { background: var(--white); }

.extra-section .section-title { text-align: center; margin-bottom: 0.75rem; }
.section-title-big { font-size: clamp(2rem, 4vw, 3rem); }
.extra-section .section-subtitle { text-align: center; color: var(--gray-700); margin-bottom: 2.5rem; font-size: 1.1rem; }

.eyebrow-tag {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

/* Eshop sekce — featured s gold accent */
.extra-section-eshop {
  background: linear-gradient(135deg, #F5EAC4 0%, #FAF6F0 100%);
}
.eshop-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  pointer-events: none;
}
.eshop-deco-1 { width: 320px; height: 320px; top: -160px; right: -80px; }
.eshop-deco-2 { width: 220px; height: 220px; bottom: -100px; left: -60px; background: rgba(212,175,55,0.08); }

.btn-large { font-size: 1rem; padding: 0.95rem 2rem; }

.testimonial {
  background: var(--white);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray-900);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  line-height: 1.7;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 1rem;
  font-size: 5rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.4;
  line-height: 1;
}

/* === PRODUCT GRID (e-shop produkty) === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--black) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--gray-100);
}
.product-placeholder {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}
.product-placeholder img {
  width: auto !important;
  height: 50px !important;
  max-width: 60% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  opacity: 0.6;
}
.product-card-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  color: var(--black);
  min-height: 2.6em;
}
.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 0 0.5rem;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--gray-700);
  margin: 0;
  flex: 1;
}

/* === EVENT LIST (události) === */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.event-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
  color: var(--black) !important;
  align-items: center;
}
.event-row:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.event-date {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  border-right: 1px solid var(--gray-300);
  padding-right: 1.5rem;
  text-align: center;
}
.event-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.event-body p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}
@media (max-width: 700px) {
  .event-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .event-date { border-right: none; border-bottom: 1px solid var(--gray-300); padding: 0 0 0.75rem; text-align: left; }
}

/* === ABOUT STRIP === */
.about-strip {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
}
.about-strip-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
.about-photo { margin: 0; position: relative; }
.about-photo img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  transition: transform 0.5s var(--ease);
}
.about-photo:hover img { transform: scale(1.02); }
.about-text .lead { font-size: 1.2rem; color: var(--gray-900); font-weight: 500; margin-bottom: 1.5rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--gray-300); flex-wrap: wrap; }
.about-stats > div { display: flex; flex-direction: column; transition: transform 0.3s var(--ease); }
.about-stats > div:hover { transform: translateY(-4px); }
.big-num {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
  display: inline-block;
}
.small-cap { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-700); font-weight: 600; }

/* === INFO STRIP — smooth přechod z about-strip do tmavé === */
.info-strip {
  background: linear-gradient(180deg, var(--cream) 0%, #2A1812 30%, #1A1A1A 100%);
  color: var(--gray-100);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.info-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: -25%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  animation: drift 20s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60%, 10%); }
}
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; position: relative; z-index: 1; }
.info-grid > div { display: flex; flex-direction: column; gap: 0.5rem; transition: transform 0.3s var(--ease); }
.info-grid > div:hover { transform: translateY(-3px); }
.info-grid strong { color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.75rem; font-weight: 700; }
.info-grid a, .info-grid div > div { color: var(--gray-100); font-size: 1.05rem; }
.info-grid a:hover { color: var(--gold); }

/* === SECTION PHOTO HERO === */
.section-photo-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 6rem 0 5rem;
  text-align: center;
  overflow: hidden;
}
.section-photo-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.section-photo-hero {
  filter: saturate(1.1) brightness(1.05);
}
.section-photo-hero .hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 1.5rem; }
.section-photo-hero .section-logo-large {
  height: 100px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  filter: brightness(0) invert(1);
}
.section-photo-hero h1 { color: var(--white); margin-bottom: 1rem; }
.section-photo-hero .lead {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
}

/* === PAGE HERO (klasický) === */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}
.page-hero h1 { color: var(--black); margin-bottom: 1rem; }
.page-hero .lead { font-size: 1.2rem; max-width: 700px; margin: 0 auto; color: var(--gray-700); font-weight: 400; }
.section-logo {
  display: block;
  margin: 0 auto 1.5rem;
  height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* === CONTENT === */
.content { padding: 5rem 0; background: var(--white); }
.content-intro { padding: 4rem 0; background: var(--gray-100); }
.content p { font-size: 1.05rem; color: var(--gray-700); }
.content p:first-of-type::first-letter {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  float: left;
  line-height: 0.9;
  margin: 0.25rem 0.75rem 0 0;
}
.hero-figure img { aspect-ratio: 16/9; object-fit: cover; border-radius: 4px; transition: transform 0.5s var(--ease); }
.hero-figure:hover img { transform: scale(1.02); }
.image-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 2.5rem 0; }
.image-gallery figure { margin: 0; overflow: hidden; border-radius: 4px; }
.image-gallery img { aspect-ratio: 1/1; object-fit: cover; transition: transform 0.5s var(--ease); }
.image-gallery figure:hover img { transform: scale(1.08); }

/* === SUB CARDS === */
.sub-cards { padding: 6rem 0; background: var(--gray-100); }
.sub-cards h2 { text-align: center; margin-bottom: 3rem; }
.sub-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.sub-card {
  background: var(--white);
  border: none;
  overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--black) !important;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-radius: 4px;
}
.sub-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(0,0,0,0.12); }
.sub-card img-wrap { display: block; overflow: hidden; }
.sub-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--ease); }
.sub-card-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  border-bottom: 4px solid var(--accent, var(--gold));
}
.sub-card-placeholder img { width: auto !important; height: 60px !important; max-width: 70%; aspect-ratio: auto !important; object-fit: contain !important; opacity: 0.7; }
.sub-card:hover img { transform: scale(1.08); }
.sub-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.sub-card h3 { margin-top: 0; font-size: 1.15rem; transition: color 0.3s var(--ease); }
.sub-card:hover h3 { color: var(--gold-dark); }
.sub-card p { flex: 1; font-size: 0.92rem; }
.learn-more {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}
.learn-more::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.sub-card:hover .learn-more::after { transform: scaleX(1); }

/* === CTA === */
.page-cta {
  background: var(--black);
  color: var(--gray-100);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.page-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-cta > * { position: relative; z-index: 1; }
.page-cta h2 { color: var(--white); margin-bottom: 1rem; }
.page-cta p { color: rgba(244,244,244,0.8); font-size: 1.05rem; margin-bottom: 2rem; }
.page-cta a { color: var(--gold); }
.page-cta .btn { background: var(--gold); color: var(--white) !important; }
.page-cta .btn:hover { background: var(--gold-dark); }

/* === KONTAKT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info dl { margin-bottom: 2rem; }
.contact-info dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-dark); font-weight: 700; margin-top: 1.5rem; }
.contact-info dd { font-size: 1.1rem; color: var(--black); margin-top: 0.4rem; line-height: 1.6; }
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.map-embed { border-radius: 4px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.1); transition: box-shadow 0.4s var(--ease); }
.map-embed:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.18); }
.map-embed iframe { width: 100%; aspect-ratio: 4/3; border: 0; display: block; }

/* === FOOTER === */
.site-footer { background: var(--black); color: rgba(244,244,244,0.7); padding: 5rem 0 1.5rem; }
.site-footer h4 {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-grid p { color: rgba(244,244,244,0.7); font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-grid a {
  color: rgba(244,244,244,0.7);
  display: block;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.footer-grid a:hover { color: var(--gold); padding-left: 6px; }

/* === FB social row === */
.footer-social {
  border-top: 1px solid rgba(244,244,244,0.1);
  padding: 1.75rem 0;
  margin-bottom: 1rem;
  text-align: center;
}
.footer-social h4 {
  color: rgba(244,244,244,0.65);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.fb-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem;
  background: rgba(244,244,244,0.04);
  border: 1px solid rgba(244,244,244,0.1);
  border-radius: 999px;
  color: rgba(244,244,244,0.85) !important;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.fb-btn:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff !important;
  transform: translateY(-1px);
  padding-left: 1.1rem !important;
}
.fb-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(244,244,244,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(244,244,244,0.4);
  letter-spacing: 0.05em;
}

/* === ALL PROJECTS CAROUSEL === */
.all-projects {
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, var(--cream) 0%, #FFFFFF 50%, #F4F4F4 100%);
  position: relative;
}
.projects-carousel-wrap { position: relative; }
.projects-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 5vw 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.projects-carousel::-webkit-scrollbar { display: none; }
.project-card {
  flex: 0 0 320px;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  scroll-snap-align: start;
  color: var(--white) !important;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.18); }
.project-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.project-card:hover .project-card-img { transform: scale(1.1); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
  transition: background 0.4s var(--ease);
}
.project-card:hover .project-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0) 10%, rgba(0,0,0,0.95) 100%);
}
.project-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.5rem;
  z-index: 2;
  text-align: left;
  transition: transform 0.4s var(--ease);
}
.project-card:hover .project-card-body { transform: translateY(-6px); }
.project-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
}
.project-card h3 {
  color: var(--white) !important;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.project-card p { color: rgba(255,255,255,0.85); font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.75rem; }
.project-card-arrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s var(--ease);
}
.project-card:hover .project-card-arrow { color: var(--white); border-color: var(--white); padding-left: 6px; }

.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--black);
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  transition: all 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  font-weight: 300;
  line-height: 1;
}
.carousel-arrow:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
.carousel-arrow-prev { left: 1rem; }
.carousel-arrow-next { right: 1rem; }

/* === MOBILE === */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    z-index: 1000;
  }
  .main-nav .nav-link { width: 100%; padding: 0.75rem 0; }
  /* Mobile menu má bílé pozadí — override bílého textu z hero-overlay site-headeru */
  .site-header .main-nav .nav-link,
  body.menu-open .site-header .nav-link { color: var(--gray-900) !important; }
  .main-nav .nav-link.nav-contact { color: var(--white) !important; }
  body.menu-open .main-nav {
    display: flex;
    max-height: calc(100vh - 101px);
    max-height: calc(100dvh - 101px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .hero-slider { height: 80vh; min-height: 500px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
  .slider-arrow-prev { left: 1rem; }
  .slider-arrow-next { right: 1rem; }
  .about-strip-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; text-align: center; }
  .about-stats { gap: 1.5rem; }
  .big-num { font-size: 2.25rem; }
  .slider-dots { bottom: 1.5rem; }
  .dot { width: 24px; }
  .dot.active { width: 40px; }
}

/* === Chodíme spolu — úvodní info-block (NW + koloběžky) === */
.cs-intro-block { background: var(--cream, #f7f3ea); }
.cs-activity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.cs-activity {
  background: #fff;
  border-radius: 10px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-top: 4px solid #5D8A66;
}
.cs-activity h3 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.4rem;
  margin: 0 0 0.85rem;
  color: #2a3d2c;
}
.cs-activity p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
  color: #3c3c3c;
}
.cs-activity p:last-child { margin-bottom: 0; }
.cs-activity .learn-more {
  display: inline-block;
  margin-top: 0.4rem;
  color: #5D8A66;
  font-weight: 600;
  text-decoration: none;
}
.cs-activity .learn-more:hover { text-decoration: underline; }
@media (max-width: 800px) {
  .cs-activity-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cs-activity { padding: 1.4rem 1.25rem 1.2rem; }
}

/* === Procedura layout (ájurvéda podstránky) — text vlevo, obrázek vpravo, VM Aleny 5.5.2026 === */
@media (min-width: 768px) {
  .content.procedura .container.narrow > figure.hero-figure,
  .content.procedura .container.narrow > p > img:first-child,
  .content.procedura .container.narrow > img:first-of-type {
    float: right;
    width: 42%;
    max-width: 360px;
    margin: 0 0 1.5rem 1.5rem;
    border-radius: 8px;
  }
}

/* === Reserve CTA (Aleny VM 3 — "Rezervujte se ještě dnes" tlačítko) === */
.reserve-cta-wrap { text-align: center; margin: 2rem 0; }
.btn.reserve-cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  background: var(--accent, #8B6F47);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
}
.btn.reserve-cta:hover { background: #6f5638; transform: translateY(-1px); }


/* === BEA SPA · Masáže — teplejší hnědé pozadí, místo bílé === */
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) {
  --sand-50: #E8D5AE;
  --sand-100: #D9BE82;
  --sand-200: #C9A659;
  --bronze: #8B6F47;
  --cocoa: #4A3728;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content { background: var(--sand-50); }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .sub-cards { background: var(--sand-100); }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .sub-card { background: #FBF6EC; box-shadow: 0 2px 12px rgba(74,55,40,0.10); }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .page-hero {
  background: linear-gradient(180deg, var(--sand-100) 0%, var(--sand-50) 100%);
  padding: 3rem 0 1.5rem;
  border-bottom: 3px solid var(--bronze);
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .page-cta {
  background: var(--cocoa);
  color: var(--sand-50);
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .page-cta h2,
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .page-cta p,
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .page-cta a:not(.btn) { color: var(--sand-50); }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .page-cta .btn {
  background: var(--sand-50);
  color: var(--cocoa);
  border: none;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .page-cta .btn:hover { background: var(--sand-200); color: var(--cocoa); }

/* tělo stránky — taky teplejší než cream */
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) body,
body:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) { background: var(--sand-50); }

/* sekce hero hlavička pod headerem */
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .section-photo-hero { /* zachovat foto, jen overlay teplejší */ }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .section-photo-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(74,55,40,0.30) 0%, rgba(74,55,40,0.60) 100%);
}

/* === Detail-stránka: subtilní H1, 2-sloupcový layout text + foto === */
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) article.content { padding: 3.5rem 0; }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) article.content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--cocoa);
  margin-bottom: 1.75rem;
  text-align: left;
  line-height: 1.3;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) article.content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cocoa);
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content p:first-of-type::first-letter {
  font-family: inherit !important;
  font-size: inherit !important;
  float: none !important;
  line-height: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
  color: inherit !important;
  font-weight: inherit !important;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content .container { max-width: 1100px; padding: 0 1.5rem; }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content-2col .image-col { position: sticky; top: 5rem; }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content-2col .image-col img,
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content-2col .image-col figure { margin: 0; width: 100%; border-radius: 4px; box-shadow: 0 4px 16px rgba(74,55,40,0.12); }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content-2col .image-col figure img { display: block; }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content-2col.text-only { grid-template-columns: 1fr; max-width: 760px; }

@media (max-width: 800px) {
  :is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content-2col {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  :is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .content-2col .image-col { position: static; order: -1; }
}


/* === Dropdown menu pro Bea Spa · Masáže === */
/* Desktop nav: flex layout (mobile menu má vlastní pravidla v @media níže) */
@media (min-width: 901px) {
  .main-nav { display: flex !important; align-items: center; gap: 1.75rem; }
}
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-caret { margin-left: 0.4rem; font-size: 0.7em; opacity: 0.55; transition: transform 0.2s var(--ease); }
.nav-item.has-dropdown:hover .nav-caret,
.nav-item.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #FFFEFB;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(74, 55, 40, 0.18);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
  border-top: 3px solid var(--gold);
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.7rem 1.4rem;
  color: var(--gray-900) !important;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.nav-dropdown a:hover {
  background: var(--gold-soft);
  color: var(--gold-dark) !important;
  padding-left: 1.7rem;
}
.nav-dropdown a + a { border-top: 1px solid rgba(0,0,0,0.04); }

/* Mobile — dropdown jako akordeon uvnitř mobile menu */
@media (max-width: 900px) {
  .nav-item,
  .nav-item.has-dropdown {
    display: block !important;
    width: 100%;
  }
  .nav-item.has-dropdown > .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .nav-caret {
    transition: transform 0.2s var(--ease);
  }
  .nav-item.has-dropdown.open > .nav-link .nav-caret {
    transform: rotate(180deg);
  }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
    min-width: 0;
    width: 100%;
    /* Klíčové — vypnout hover-based open na mobile (touch trigger by jinak otevřel vše naráz) */
  }
  /* Aktivace JEN přes JS toggle (.open), ne přes :hover ani :focus-within */
  .nav-item.has-dropdown.open .nav-dropdown { max-height: 600px; }
  .nav-item.has-dropdown:hover .nav-dropdown,
  .nav-item.has-dropdown:focus-within .nav-dropdown {
    max-height: 0;
    transform: none !important;  /* potlačit desktop translateX(-50%) co posouvá dropdown doleva */
  }
  .nav-item.has-dropdown.open:hover .nav-dropdown,
  .nav-item.has-dropdown.open:focus-within .nav-dropdown {
    max-height: 600px;
    transform: none !important;
  }
  .nav-dropdown a {
    padding: 0.75rem 1.5rem 0.75rem 2rem;
    font-size: 0.95rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    color: var(--gray-700) !important;
    white-space: normal;
  }
  .nav-dropdown a:hover { padding-left: 2rem; }
}


/* === Depilace: galerie mřížka + FAQ accordion === */
:is(.section-depilace) .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
:is(.section-depilace) .gallery-grid figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(74,55,40,0.12);
}
:is(.section-depilace) .gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* FAQ accordion via native <details> */
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list {
  margin: 2rem 0;
  max-width: 760px;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list details {
  background: #FBF6EC;
  border: 1px solid rgba(74,55,40,0.10);
  border-radius: 6px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease);
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list details[open] {
  box-shadow: 0 4px 16px rgba(74,55,40,0.10);
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cocoa);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list summary::-webkit-details-marker {
  display: none;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list summary::after {
  content: '+';
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--bronze);
  transition: transform 0.2s var(--ease);
  line-height: 1;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list details[open] summary::after {
  transform: rotate(45deg);
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list .faq-answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list .faq-answer p { margin-bottom: 0.85rem; }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list .faq-answer p:last-child { margin-bottom: 0; }
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .faq-list .faq-answer ul { margin: 0.5rem 0 0.85rem 1rem; }


/* === Info-box (Nordic Walking detail + reusable) === */
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .info-box {
  max-width: 380px;
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--sand-100);
  border: 1px solid var(--bronze);
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(74,55,40,0.10);
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .info-box .info-box-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--cocoa);
  display: block;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .info-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cocoa);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .info-box p {
  font-size: 0.92rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.55;
}

/* Team photo — pod textem, 50 % šířky, centrovaná */
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .team-photo {
  margin: 3rem auto 1rem;
  max-width: 50%;
}
:is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .team-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(74,55,40,0.15);
}
@media (max-width: 800px) {
  :is(.section-bea, .section-ajurveda, .section-depilace, .section-chodime-spolu) .team-photo {
    max-width: 90%;
  }
}

/* === FIX (AASI 26.5.2026): úzké pásmo 901–1024px — 6 nav položek se nevejde do řádku → ořez.
   Zapneme hamburger menu i v tomto pásmu (replikace nav pravidel z ≤900). === */
@media (min-width: 901px) and (max-width: 1024px) {
  .menu-toggle { display: block !important; }
  .main-nav {
    display: none !important;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem; gap: 0.5rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    z-index: 1000;
  }
  body.menu-open .main-nav { display: flex !important; }
  .main-nav .nav-link { width: 100%; padding: 0.75rem 0; }
  .site-header .main-nav .nav-link { color: var(--gray-900) !important; }
  .main-nav .nav-link.nav-contact { color: var(--white) !important; }
  .nav-item, .nav-item.has-dropdown { display: block !important; width: 100%; }
  .nav-item.has-dropdown > .nav-link { display: flex; justify-content: space-between; align-items: center; width: 100%; }
  .nav-dropdown {
    position: static; transform: none; box-shadow: none; padding: 0;
    background: transparent; opacity: 1; visibility: visible; pointer-events: auto;
    border-top: none; max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease);
    min-width: 0; width: 100%;
  }
  .nav-item.has-dropdown.open .nav-dropdown { max-height: 600px; }
  .nav-item.has-dropdown:hover .nav-dropdown,
  .nav-item.has-dropdown:focus-within .nav-dropdown { max-height: 0; transform: none !important; }
  .nav-item.has-dropdown.open:hover .nav-dropdown,
  .nav-item.has-dropdown.open:focus-within .nav-dropdown { max-height: 600px; transform: none !important; }
  .nav-dropdown a { padding: 0.75rem 1.5rem 0.75rem 2rem; font-size: 0.95rem; border-top: 1px solid rgba(0,0,0,0.06); color: var(--gray-700) !important; white-space: normal; }
}
