/* styles.css */
:root{
  --bg: #F7EFE8; /* jemné teplé pozadí */
  --card: #FFFFFF;
  --accent: #E9B89B; /* teplý akcent */
  --muted: #8C6A57;
  --text: #3b2f2a;
  --shadow: 0 6px 18px rgba(60,40,30,0.08);
  --radius: 14px;
  --container-width: 1100px;
}
*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; background:var(--bg); color:var(--text); margin:0; -webkit-font-smoothing:antialiased}
.container{max-width:var(--container-width); margin:0 auto; padding:28px}
.site-header{
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header.scrolled{
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.site-header{
  background: rgba(15, 23, 42, 0.85);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{font-weight:700; font-size:1.1rem; color:#E9B89B; text-decoration:none}
.main-nav{display:flex; gap:18px}
.main-nav a{color:var(--muted); color: #E9B89B; text-decoration:none; padding:8px 12px; border-radius:10px}
.main-nav a:hover{background:rgba(233,184,155,0.12)}
.nav-toggle{display:none; background:none; border:none; font-size:1.2rem}

.panel{padding:48px 0}
.intro{padding-top:36px}
.intro-grid{display:flex; gap:28px; align-items:center}
.intro-text{flex:1}
.intro-text h1{font-size:2rem; margin:0 0 12px}
.intro-images{display:flex; gap:10px}
.intro-images img{width:160px; height:110px; object-fit:cover; border-radius:12px; box-shadow:var(--shadow)}

.cards{display:flex; gap:20px; margin-top:18px}
.card{background:var(--card); padding:18px; border-radius:var(--radius); box-shadow:var(--shadow); flex:1}
.card img{width:100%; height:140px; object-fit:cover; border-radius:10px}
.card h3{margin:12px 0 6px}
.lead{color:var(--muted)}

.about-grid{display:flex; gap:20px; align-items:center}
.about-photo img{width:240px; height:240px; object-fit:cover; border-radius:18px; box-shadow:var(--shadow)}

.form{background:var(--card); padding:22px; border-radius:16px; box-shadow:var(--shadow); max-width:760px}
.form-row{margin-bottom:14px}
.form-row label{display:block; margin-bottom:6px; font-weight:600}
.form-row input[type=text], .form-row select{width:100%; padding:10px 12px; border-radius:10px; border:1px solid rgba(60,40,30,0.08)}
.two-cols{display:flex; gap:12px}
.two-cols > div{flex:1}
.price{padding:10px 12px; border-radius:10px; background:#fff; box-shadow:inset 0 -2px 0 rgba(0,0,0,0.02)}
.btn{display:inline-block; padding:12px 18px; border-radius:12px; background:var(--accent); color:white; border:none; cursor:pointer; font-weight:700}

.site-footer {
  margin-top: 40px;
  background: rgba(15, 23, 42, 0.92);
  color: #F7EFE8;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 42px;
  padding-bottom: 34px;
}

.footer-brand h3,
.footer-col h4 {
  margin: 0 0 12px;
  color: #E9B89B;
}

.footer-brand p,
.footer-col p {
  margin: 0;
  line-height: 1.6;
  color: rgba(247,239,232,0.78);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: rgba(247,239,232,0.82);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-col a:hover {
  color: #E9B89B;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(247,239,232,0.12);
  text-align: center;
  padding: 16px 20px;
  color: rgba(247,239,232,0.62);
  font-size: 0.9rem;
}

/* responzivní footer */
@media (max-width:900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    text-align: left;
  }
}

/* responsive */
@media (max-width:900px){
  .intro-grid, .about-grid{flex-direction:column}
  .cards{flex-direction:column}
  .main-nav{display:none}
  .nav-toggle{display:inline-block}
  .main-nav.open{display:flex; position:absolute; right:20px; top:64px; background:var(--card); padding:12px; border-radius:12px; box-shadow:var(--shadow); flex-direction:column}
}
html {
  scroll-behavior: smooth;
}

.panel,
.card,
.about-photo,
.form {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.panel.visible,
.card.visible,
.about-photo.visible,
.form.visible {
  opacity: 1;
  transform: translateY(0);
}

.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(60,40,30,0.16);
}

.intro-images img{
  width:320px;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,0.18);
}

.intro-images img:hover {
  transform: scale(1.06) rotate(-1deg);
  filter: brightness(1.06);
}

.main-nav a.active {
  background: rgba(233,184,155,0.18);
}

.btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(233,184,155,0.35);
}

.price {
  transition: background 0.3s ease, transform 0.3s ease;
}

.price.updated {
  background: #F7EFE8;
  transform: scale(1.03);
}
/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 9999;
  padding: 30px;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  transform: scale(0.92);
  transition: transform 0.35s ease;
}

.lightbox.open img {
  transform: scale(1);
}

/* klikatelné obrázky */
.intro-images img,
.card img,
.about-photo img {
  cursor: zoom-in;
}
.card img,
.intro-images img,
.about-photo img {
  transition: transform 0.4s ease;
}

.card img:hover,
.intro-images img:hover,
.about-photo img:hover {
  transform: scale(1.03);
}
@media (max-width:900px){
  .intro-images{
    flex-direction:column;
    width:100%;
  }

  .intro-images img{
    width:100%;
    height:240px;
  }
}
.location h2 {
  margin-bottom: 10px;
}

.map-wrapper {
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.map-wrapper {
  position: relative;
}

.map-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,23,42,0.18),
    transparent 35%
  );
  pointer-events: none;
}
.events-hero {
  text-align: center;
  padding-top: 70px;
}

.events-hero h1 {
  font-size: 2.6rem;
  margin: 8px 0 12px;
}

.section-label {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.events-grid,
.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.event-card,
.report-card {
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.event-card {
  display: flex;
  gap: 18px;
  padding: 22px;
}

.event-date {
  min-width: 88px;
  height: 88px;
  border-radius: 18px;
  background: #F7EFE8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-date strong {
  font-size: 1.8rem;
  color: var(--text);
}

.event-date span {
  color: var(--muted);
  font-size: 0.9rem;
}

.event-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(233,184,155,0.22);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.78rem;
}

.event-tag.done {
  background: rgba(15,23,42,0.08);
}

.event-content h3,
.report-content h3 {
  margin: 0 0 8px;
}

.event-content p,
.report-content p {
  color: var(--muted);
  line-height: 1.6;
}

.event-info {
  font-weight: 600;
}

.report-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.report-content {
  padding: 20px;
}

.event-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.event-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .events-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-direction: column;
  }

  .events-hero h1 {
    font-size: 2.1rem;
  }
}
.section-heading {
  margin-bottom: 26px;
}

.section-heading p {
  color: var(--muted);
  margin-top: 8px;
}

.upcoming-section {
  background: rgba(255,255,255,0.35);
}

.past-events {
  background: rgba(15,23,42,0.03);
}
.events-hero,
.upcoming-section,
.past-events,
.event-card,
.report-card {
  opacity: 1;
  transform: none;
}
.gallery-toggle {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}

.report-card.gallery-open .event-gallery {
  max-height: 800px;
  opacity: 1;
}

.event-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
}

@media (max-width: 700px) {
  .event-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* FORM INPUTY */
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(60,40,30,0.08);
}

.gdpr-row {
  margin-top: 30px;
}

.checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #4a4036;
  font-weight: 400 !important;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
  position: static !important;
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  accent-color: #E9B89B;
}

.checkbox span {
  display: block;
}

.checkbox a {
  color: #b9823c;
  font-weight: 600;
  text-decoration: none;
}
.gdpr-row {
  margin-top: 30px;
}

.custom-checkbox {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
  font-weight: 400 !important;
  line-height: 1.5;
  cursor: pointer;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #E9B89B;
  border-radius: 5px;
  background: #fff;
  margin-top: 2px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.custom-checkbox input:checked + .checkmark {
  background: #E9B89B;
}

.custom-checkbox input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: -4px;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.custom-checkbox a {
  color: #b9823c;
  font-weight: 600;
  text-decoration: none;
}

.custom-checkbox a:hover {
  text-decoration: underline;
}
.gdpr-row p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  line-height: 1.5;
}

.gdpr-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 18px;
}

.gdpr-row label {
  display: inline;
  font-weight: 400;
  margin: 0;
}

.gdpr-row a {
  color: #b9823c;
  font-weight: 600;
}
#signupForm .gdpr-row {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  transform: none !important;
  margin-top: 28px !important;
}

#signupForm .gdpr-row p {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin: 0 0 14px 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#signupForm .gdpr-row input[type="checkbox"] {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  margin: 3px 0 0 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: static !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
}

#signupForm .gdpr-row label {
  display: inline !important;
  margin: 0 !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}
.event-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 90px 1fr 260px;
  align-items: center;
  gap: 24px;
  padding: 26px;
}

.event-poster {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
  background: #fff;
}

.event-poster img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.35s ease;
}

.event-poster img:hover {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .event-card-featured {
    grid-template-columns: 1fr;
  }

  .event-poster img {
    height: auto;
    max-height: 520px;
    object-fit: contain;
  }
}
.editorial-section {
  background: #fff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.editorial-left h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  color: #0d315f;
  text-align: center;
  margin: 0 0 70px;
}

.editorial-images {
  position: relative;
  min-height: 520px;
}

.editorial-images img {
  object-fit: cover;
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

.editorial-images .small-img {
  width: 260px;
  height: 260px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.editorial-images .large-img {
  width: 480px;
  height: 390px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.editorial-right {
  padding-top: 20px;
}

.intro-note {
  font-style: italic;
  font-size: 1.15rem;
  color: #7c6f66;
}

.editorial-right p,
.about-copy p {
  color: #8c827b;
  line-height: 1.8;
}

.signature {
  margin-top: 28px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #0d315f;
}

.section-heading.center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-heading h2,
.about-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #0d315f;
  margin: 8px 0 14px;
}

.luxury-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.luxury-card {
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
  border-radius: 0;
}

.luxury-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 18px;
}

.luxury-card h3 {
  font-family: Georgia, serif;
  color: #0d315f;
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.luxury-card p {
  color: #8c827b;
  line-height: 1.6;
}

.about-editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-photo-large img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  .editorial-grid,
  .about-editorial,
  .luxury-cards {
    grid-template-columns: 1fr;
  }

  .editorial-left h1 {
    text-align: left;
    margin-bottom: 30px;
  }

  .editorial-images {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .editorial-images .small-img,
  .editorial-images .large-img {
    position: static;
    width: 100%;
    height: 280px;
  }

  .about-photo-large img {
    height: 380px;
  }
}
.hero-editorial {
  background: var(--bg);
  padding-top: 90px;
  overflow: hidden;
}

.hero-editorial-grid {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 520px);
  justify-content: center;
  gap: 90px;
  align-items: start;
}

.hero-left h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.05;
  text-align: center;
  color: #0b315f;
  margin: 0 0 70px;
}

.hero-photo-collage {
  position: relative;
  width: 100%;
  min-height: 760px;
}

/* MALÁ FOTKA */
.hero-photo-small {
  position: absolute;
  top: 0;
  left: 0;

  width: 260px;
  height: 360px;

  object-fit: cover;

  z-index: 3;

  box-shadow: 0 20px 40px rgba(0,0,0,0.16);
}

/* VELKÁ FOTKA */
.hero-photo-large {
  position: absolute;

  right: 0;
  top: 170px;

  width: 350px;
  height: 620px;

  object-fit: cover;
  object-position: center;

  box-shadow: 0 24px 55px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {

  .hero-photo-collage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-photo-small,
  .hero-photo-large {
    position: static;
    width: 100%;
    height: 320px;
  }

}
.hero-photo-collage img,
.hero-side-photo {
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.hero-photo-small {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 0;
  left: 0;
  z-index: 2;
}

.hero-photo-large {
  position: absolute;
  width: 500px;
  height: 410px;
  right: 0;
  bottom: 0;
}

.hero-right {
  padding-top: 8px;
}

.hero-intro {
  font-style: italic;
  font-size: 1.15rem;
  color: #6f6863;
}

.hero-right p {
  color: #8c827b;
  line-height: 1.8;
}

.hero-signature {
  margin: 28px 0 50px;
  font-family: Georgia, serif;
  font-style: italic;
  color: #0b315f;
  font-size: 1.5rem;
}

.hero-side-photo {
  width: 100%;
  height: 310px;
  display: block;
  margin-bottom: 30px;
}

.hero-booking h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #0b315f;
  margin: 0 0 18px;
}

.hero-booking ul {
  padding-left: 20px;
  color: #8c827b;
  line-height: 1.8;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 70px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0b315f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.benefit-item h3 {
  font-family: Georgia, serif;
  color: #0b315f;
  margin: 0 0 6px;
}

.benefit-item p {
  margin: 0;
  color: #8c827b;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-editorial-grid,
  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    text-align: left;
    margin-bottom: 30px;
  }

  .hero-photo-collage {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .hero-photo-small,
  .hero-photo-large {
    position: static;
    width: 100%;
    height: 280px;
  }
}
.skills-section {
  padding-top: 90px;
  padding-bottom: 80px;
}

.skills-container {
  max-width: 980px;
  margin: 0 auto;
}

.skills-heading {
  text-align: center;
  margin-bottom: 60px;
}

.skills-heading h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: #0b315f;
  margin: 14px 0 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.skill-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,0.78);
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.skill-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0b315f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.skill-card h3 {
  font-family: Georgia, serif;
  color: #0b315f;
  margin: 2px 0 8px;
  font-size: 1.4rem;
}

.skill-card p {
  margin: 0;
  color: #6f6863;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skills-heading {
    text-align: left;
  }
}
.hero-left h1 {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.benefits-editorial {
  padding-top: 30px;
  padding-bottom: 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: start;
}

.benefit-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0b315f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.benefit-item h3 {
  font-family: Georgia, serif;
  color: #0b315f;
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.benefit-item p {
  margin: 0;
  color: #8c827b;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 9999;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  transform: scale(0.92);
  transition: transform 0.35s ease;
}

.lightbox.open img {
  transform: scale(1);
}

/* KLIKATELNÉ OBRÁZKY */
img {
  cursor: zoom-in;
}

/* =========================================================
   OPRAVA HERO KOLÁŽE – desktop + mobil
   Vloženo jako poslední pravidla, aby přepsala starší duplicitní styly
   ========================================================= */

.hero-photo-collage {
  position: relative !important;
  width: 100% !important;
  min-height: 760px !important;
  display: block !important;
  margin-bottom: 0 !important;
}

.hero-photo-collage img {
  object-fit: cover !important;
  box-shadow: 0 24px 55px rgba(0,0,0,0.18) !important;
}

/* malá překrytá fotka vlevo nahoře */
.hero-photo-collage .hero-photo-small {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 260px !important;
  height: 360px !important;
  z-index: 3 !important;
}

/* velká fotka opravdu na výšku */
.hero-photo-collage .hero-photo-large {
  position: absolute !important;
  right: 0 !important;
  top: 170px !important;
  bottom: auto !important;
  width: 350px !important;
  height: 620px !important;
  z-index: 2 !important;
  object-position: center !important;
}

/* MOBIL – fotky už nejsou absolutně, takže nepřekrývají text */
@media (max-width: 900px) {
  .hero-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .hero-left h1 {
    text-align: left !important;
    margin-bottom: 30px !important;
    font-size: clamp(2.3rem, 10vw, 3rem) !important;
  }

  .hero-photo-collage {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    margin-bottom: 26px !important;
  }

  .hero-photo-collage .hero-photo-small,
  .hero-photo-collage .hero-photo-large {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
  }

  .hero-photo-collage .hero-photo-small {
    max-width: 250px !important;
    align-self: flex-start !important;
  }

  .hero-photo-collage .hero-photo-large {
    max-width: 100% !important;
    align-self: stretch !important;
  }
}
/* DYNAMICKÉ ANIMACE SEKCÍ */
.hero-left h1,
.hero-photo-collage,
.hero-right,
.benefit-item,
.skill-card,
.luxury-card,
.about-photo-large,
.about-copy {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-left h1.visible,
.hero-photo-collage.visible,
.hero-right.visible,
.benefit-item.visible,
.skill-card.visible,
.luxury-card.visible,
.about-photo-large.visible,
.about-copy.visible {
  opacity: 1;
  transform: translateY(0);
}

/* jemné zpoždění */
.benefit-item:nth-child(2),
.skill-card:nth-child(2),
.luxury-card:nth-child(2) {
  transition-delay: 0.12s;
}

.benefit-item:nth-child(3),
.skill-card:nth-child(3),
.luxury-card:nth-child(3) {
  transition-delay: 0.24s;
}

.benefit-item:nth-child(4),
.skill-card:nth-child(4) {
  transition-delay: 0.36s;
}

/* fotky živější */
.hero-photo-small,
.hero-photo-large,
.hero-side-photo,
.luxury-card img,
.about-photo-large img {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero-photo-small:hover,
.hero-photo-large:hover,
.hero-side-photo:hover,
.luxury-card img:hover,
.about-photo-large img:hover {
  transform: scale(1.035);
  box-shadow: 0 26px 60px rgba(0,0,0,0.22);
}

/* karty jemný pohyb */
.skill-card:hover,
.luxury-card:hover,
.benefit-item:hover {
  transform: translateY(-6px);
}
