
.subpage-banner {
    height: 60vh;
    overflow: hidden;
  }

  /* Kontakt + Služby + Legal – menší banner */
  .subpage-banner.kontakt-banner,
  .subpage-banner.sluzby-banner,
  .subpage-banner.legal-banner {
    height: 60vh;
  }
  
  .subpage-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* ořízne obrázek pěkně na výšku */
    display: block;
  }
  
  .subpage-heading {
    text-align: center;
    padding: 15vh 5vw 4vh;
    background-color: #f9f7ef;
  }
  
  .subpage-heading h1 {
    font-size: 1.5rem;
    color: #ff0068;
    letter-spacing: -1px;
    line-height: 1;
  }
  
  .subpage-heading p {
    font-size: 5rem;
    font-weight: bold;
    color: #2d2621;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1;
  }
  
  .subpage-body {
    padding: 4vh 8vw;
  }
  

  /* ========================================== KONTAKT ========================================== */
  /* ========================================== KONTAKT ========================================== */
  /* ========================================== KONTAKT ========================================== */

  .contact-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, auto); /* jen 3 položky v jednom řádku */
    justify-content: center;
    gap: 3rem 6rem;
    margin-bottom: 5vh;
  }

  .contact-icons-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    justify-content: center;
    gap: 3rem 6rem;
    margin-top: 3rem;
  }

  .contact-icons-grid,
.contact-icons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 6rem;
  margin-bottom: 2vh;
}
  
  

  .contact-options {
    padding: 6vh 8vw;
    text-align: center;
  }
  
  .contact-note {
    color: #ff0068;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-options h2 {
    font-size: 4rem;
    color: #222;
    margin-bottom: 4vh;
    font-weight: 800;
  }
  
  .contact-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 3rem 6rem;
    margin-bottom: 5vh;
  }
  
  .contact-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    max-width: 300px;
    text-align: left;
    opacity: 0;
    transition: transform 0.3s ease; /* ⬅️ důležité pro smooth návrat */
    text-decoration: none;
  }
  
  .contact-block:hover {
    transform: scale(1.05) rotate(-3deg);
  }
  
  .contact-block img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease; /* ⬅️ přidat! */
  }
  
  .contact-block:hover img {
    transform: scale(1.1) rotate(-10deg);
  }
  
  .contact-block h3 {
    color: #ff0068;
    margin: 0;
    font-weight: 700;
    font-size: 1.4rem;
  }
  
  .contact-block p {
    margin: 0;
    color: #444;
    font-size: 1rem;
  }
  
  .cta-full {
    display: block;
    width: fit-content;
    background: #ff0068;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    margin: 2vh auto;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: transform 0.3s ease, opacity 0.4s ease;
  }
  
  .in-view.cta-full {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  
  .in-view.cta-full:hover {
    transform: translateY(0) scale(1.05);
    /* NEPŘIDÁVEJ nový transition! */
  }



  /* ===================================== FORM SECTION  =====================================*/

  .contact-form-section {
    padding: 6vh 8vw 3vw 8vw;
    text-align: center;
  }
  
  .contact-form-section h2 {
    font-size: 2.8rem;
    color: #ff0068;
    font-weight: 800;
    margin-bottom: 4vh;
  }
  
  .form-and-image {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    align-items: flex-start;
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin-top: 3vw;
    background-color: #fad1d4;
    padding: 40px;
    border-radius: 20px;
    border: solid 3px #2d2621;
    opacity: 0;
    box-shadow: 0 8px 20px rgba(45, 38, 33, 0.25);
  }

  
  .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .form-group label {
    font-weight: 600;
    margin-bottom: 0.1rem;
    font-size: 0.7rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    border: 2px solid #a58b74;
    border-radius: 20px;
    font-size: 0.7rem;
    background-color: #f9f7ef;
  }
  
  .form-group.full {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .char-count {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.2rem;
    display: none;
  }

  .checkbox-group {
    margin-top: 1rem;
    text-align: left;
  }
  
  .checkbox-label {
    font-size: 0.9rem;
    color: #2d2621;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #ff0068;
    cursor: pointer;
  }
  
  .checkbox-label a {
    color: #ff0068;
    text-decoration: underline;
    transition: opacity 0.2s ease;
  }
  
  .checkbox-label a:hover {
    opacity: 0.6;
  }
  
  
  .submit-button {
    background-color: #ff0068;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
  }
  
  .submit-button:hover {
    background-color: #2d2621;
  }
  
  .form-image {
    flex: 1;
    min-width: 100px;
    max-width: 300px;
  }
  
  .form-image img {
    width: 100%;
    height: auto;
  }
  
  /* Skrytí před animací */
  .fade-in-up,
  .contact-block,
  .contact-form {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
  }
  
  .slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
  }
  
  
  /* Po zobrazení ve viewportu */
  .in-view.fade-in-up,
  .in-view.zoom-in,
  .in-view.slide-in-left,
  .in-view.contact-block,
  .in-view.cta-full,
  .in-view.contact-form {
    opacity: 1;
    transform: translate(0, 0);
  }
  .in-view.zoom-in {
    transform: scale(1);
  }
  .in-view.slide-in-left {
    transform: translateX(0);
  }


 

  /* =========================================== SEKCE SLUŽBY =========================================== */
  /* =========================================== SEKCE SLUŽBY =========================================== */
  /* =========================================== SEKCE SLUŽBY =========================================== */
 

/* ====================== CTA tlačítka ====================== */

.cta3-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 7vw;
  }
  
  .cta3-container {
    display: flex;
    flex-wrap: nowrap; /* NEzalamovat na nový řádek */
    gap: 3vw;
    overflow-x: auto; /* Pokud je málo místa, bude scroll */
    padding: 1vh 2vw;
    scrollbar-width: none; /* Firefox */
  }
  
  .cta3-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }


  .cta-button3 {
    background-color: transparent;
    color: #a58b74;
    border: 2px solid #a58b74;
    padding: 12px 24px;
    border-radius: 100px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    font-size: 1vw;
    text-align: center;
    white-space: nowrap;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    /* ⚠️ Odstraněno: opacity, transform, transition: opacity/transform */
  }

  .cta-button3.visible {
    opacity: 1;
    transform: scale(1);
  }
  
  .cta-button3.active {
    background-color: #fad1d4;
    border-color: #fad1d4;
    color: #fff;
  }
  
  .cta-button3:hover {
    background-color: #fad1d4;
    border: 2px solid #fad1d4;
    color: #f9f7ef;
  }
  
  .zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .zoom-in.visible {
    opacity: 1;
    transform: scale(1);
  }
  
  /* ====================== Bloky služeb ====================== */
.service-blocks{
    margin-top: -7vw;
}

  .service-block {
    display: none;
    padding: 4vh 0;
  }
  
  .service-block h2 {
    font-size: 2vw;
    color: #ff0068;
    text-align: center;
  }

  .service-block-heading p {
    text-align: center;
    padding: 50px 100px;
  }

  
  


  /* ====================== Navigace mezi bloky ====================== */
  .service-navigation {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-top: 4vh;
  }
  
  .service-navigation button {
    background: transparent;
    border: 2px solid #a58b74;
    color: #a58b74;
    font-size: 2rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .service-navigation button:hover {
    background-color: #fad1d4;
    border-color: #fad1d4;
    color: #fff;
  }
  
  /* ====================== Obecný obsah ====================== */
  #general-content {
    display: flex;
    justify-content: center;
    margin: 5vh 0;
  }

  .cooperation-process {
    margin-top: 5vw;
    padding: 2vw;
    background: #f9f7ef;
  }
  
  .cooperation-process h2 {
    font-size: 2rem;
    margin-bottom: 2vw;
    text-align: center;
  }

  .accordion {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-auto-rows: auto;
    gap: 3vw 5vw;
    justify-content: center;
    text-align: center;
    padding: 4vh 0;
  }

  /* Centrování posledního prvku (Finalizace) */
.accordion-item:nth-child(7) {
    grid-column: 2 / 3; /* Vycentrovat do prostředního sloupce */
  }
  
  .accordion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .accordion-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
  
  .accordion-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }

  /* Hover efekt */
.accordion-header:hover .accordion-icon {
    transform: scale(1.1) rotate(10deg);
  }

  /* Pokud je položka otevřená */
.accordion-item.open .accordion-icon {
    transform: scale(1.1) rotate(10deg);
  }
  
  .accordion-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 5px;
  }
  
  .accordion-toggle {
    display: none; /* Nepotřebujeme +/− při horizontálním layoutu */
  }
  
/* Zobrazení obsahu */
.accordion-content {
    display: none;
    max-width: 300px;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #444;
    transition: all 0.3s ease;
  }
  
  .accordion-item.open .accordion-content {
    display: block;
  }
  
  .inline-link {
    color: #ff0068;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }
  
  .inline-link:hover {
    border-color: #ff0068;
  }

  
  /* ================================= BRANDING ================================== */

  .branding-phase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4vw;
    margin: 6vh 0;
    flex-wrap: wrap;
  }
  
  .branding-img {
    flex: 1 1 40%;
    min-height: 100px;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .branding-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }
  
  .branding-text {
    flex: 1 1 50%;
    max-width: 600px;
    color: #2d2621;
  }
  
  .branding-text h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d2621;
  }
  
  .branding-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .service-cta {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #2d2621;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .service-cta:hover {
    background-color: #ff0068;
    transform: translateY(-2px);
  }
  
  
  /* Responsivita */
  @media screen and (max-width: 768px) {
    .branding-phase {
      flex-direction: column;
      text-align: center;
    }
  
    .branding-img,
    .branding-text {
      flex: 1 1 100%;
      max-width: 100%;
    }
  
    .branding-text h3 {
      font-size: 1.4rem;
    }
  
    .branding-text p {
      font-size: 0.95rem;
    }
  }

  /* =================== DISCOVERY || STRATEGY || VISUALS || APPLICATIONS ====================== */
/* Sekce s obrázkovým bannerem */
.subpage-banner {
    position: relative;
    height: 100vh; /* nebo výšku dle libosti */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end; /* nadpis dolů */
    justify-content: center;
    padding-bottom: 20vw;
  }
  
  /* Nadpis přes banner */
  .banner-heading {
    color: #ff0068;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    z-index: 2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.945);
  }
  
  /* Responsivita */
  @media screen and (max-width: 768px) {
    .banner-heading {
      font-size: 1.6rem;
      padding: 0 1rem;
    }
  
    .subpage-banner {
      height: 40vh;
    }
  }

 /* ================ FÁZE BRANDINU NAVIGACE ===================*/


  .simple-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 5vh 0 0;
  }
  
  .arrow-btn {
    font-size: 2rem;
    color: #ff0068;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: transform 0.2s ease, color 0.3s ease;
  }
  
  .arrow-btn:hover {
    transform: scale(1.2);
    color: #e6005e;
  }
  


  /* ================ DISCOVERY ===================*/

  .discovery-content {
    padding: 8vh 5vw;
    background-color: #f9f7ef;
    text-align: center;
  }
  
  .discovery-content .section-intro h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .discovery-content .section-intro p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
  }
  
  .discovery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
  }
  
  .discovery-item {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .discovery-item:hover {
    transform: translateY(-4px);
  }
  
  .discovery-item .item-number {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff0068;
  }
  
  .discovery-item h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
  }
  
  .discovery-item p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* Responsivita */
  @media screen and (max-width: 960px) {
    .discovery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media screen and (max-width: 600px) {
    .discovery-grid {
      grid-template-columns: 1fr;
    }
  
    .discovery-content .section-intro h2 {
      font-size: 1.5rem;
    }
  }

  .cta-back-wrapper {
    display: flex;
    justify-content: center;
    margin: 5vh 0;
  }
  
  .cta-back {
    background-color: transparent;
    color: #a58b74;
    border: 2px solid #a58b74;
    padding: 12px 24px;
    border-radius: 100px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    font-size: 1vw;
    text-align: center;
    white-space: nowrap;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  
  .cta-back:hover {
    background-color: #fad1d4;
    border-color: #fad1d4;
    color: #f9f7ef;
  }


/* ==================================== WEB =======================================*/

/* Dva textové bloky vedle sebe – WordPress + Custom */

#web-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center; /* centrum mřížky */
    gap: 3vw;
    max-width: 900px;
    margin: 6vh auto;
  }
  
.branding-two-column {
    display: flex;
    justify-content: space-between;
    gap: 4vw;
    margin: 6vh 0;
    flex-wrap: wrap;
  }
  
  .branding-two-column .branding-text {
    flex: 1 1 45%;
    max-width: 500px;
    color: #2d2621;
  }
  
  @media screen and (max-width: 768px) {
    .branding-two-column {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .branding-two-column .branding-text {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .fullwidth-list {
    max-width: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .fullwidth-list ul {
    text-align: left;
    max-width: 700px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .centered-list-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%; 
    align-items: center; /* vystředí celý blok */
    margin-top: 5vh;
    gap: 5vw;
  }
  
  .centered-list-wrapper h3 {
    text-align: left;
    font-size: 3rem;
  }
  
  .centered-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    text-align: left; /* text vlevo */
  }
    
  .centered-list li {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  
  

/* ================ GRAFIKA ===================*/
.grafika-subsection {
    padding: 20px 8vw;
    margin: 2vw auto;
    text-align: center;
  }
  
  .grafika-subsection h3 {
    font-size: 1.6rem;
    color: #2d2621;
    margin-bottom: 1rem;
  }
  
  .grafika-subsection p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }
  

/* ================ APPLICATIONS ===================*/

/* ══════════════════════════════════════════════════
   COOPERATION MODAL
══════════════════════════════════════════════════ */

.coop-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 23, 19, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.coop-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.coop-modal-box {
  background: #f9f7ef;
  border-radius: 16px;
  padding: 48px 56px 40px;
  max-width: 560px;
  width: 90%;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease;
}

.coop-modal.is-open .coop-modal-box {
  transform: translateY(0) scale(1);
}

.coop-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #a58b74;
  padding: 4px 8px;
  transition: color 0.2s;
}

.coop-modal-close:hover { color: #ff0068; }

.coop-modal-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: block;
}

.coop-modal-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff0068;
  margin: 0 0 8px;
}

.coop-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2d2621;
  margin: 0 0 16px;
}

.coop-modal-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
}

.coop-modal-text a {
  color: #ff0068;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.coop-modal-text a:hover { border-color: #ff0068; }

.coop-modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(45,38,33,0.1);
}

.coop-modal-nav-btn {
  background: none;
  border: 2px solid #a58b74;
  color: #a58b74;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coop-modal-nav-btn:hover {
  background: #ff0068;
  border-color: #ff0068;
  color: #fff;
}

.coop-modal-counter {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #a58b74;
}

/* Blur stránky pod modalem */
body.modal-open #site-wrap {
  filter: blur(5px);
}

/* Ikony klikatelné – cursor pointer */
.accordion-header { cursor: pointer; }

/* ══════════════════════════════════════════════════
   FAQ MODAL
══════════════════════════════════════════════════ */

.faq-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 23, 19, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.faq-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.faq-modal-box {
  background: #f9f7ef;
  border-radius: 16px;
  padding: 48px 52px 40px;
  max-width: 680px;
  width: 92%;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.faq-modal.is-open .faq-modal-box {
  transform: translateY(0) scale(1);
}

.faq-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #a58b74;
  padding: 4px 8px;
  transition: color 0.2s;
}

.faq-modal-close:hover { color: #ff0068; }

.faq-modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #2d2621;
  margin: 0 0 28px;
  flex-shrink: 0;
}

.faq-list {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ff0068 transparent;
  flex: 1;
}

.faq-list::-webkit-scrollbar { width: 3px; }
.faq-list::-webkit-scrollbar-thumb { background: #ff0068; border-radius: 2px; }

.faq-item {
  border-bottom: 1px solid rgba(45,38,33,0.1);
}

.faq-item:first-child { border-top: 1px solid rgba(45,38,33,0.1); }

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  user-select: none;
}

.faq-header:hover .faq-question { color: #ff0068; }

.faq-question {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2d2621;
  transition: color 0.2s;
  flex: 1;
}

.faq-toggle {
  font-size: 1.2rem;
  color: #a58b74;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
  padding: 0 0 16px;
  margin: 0;
}

body.modal-open #site-wrap {
  filter: blur(5px);
}

/* ══════════════════════════════════════════════════
   FORM FEEDBACK
══════════════════════════════════════════════════ */

.form-feedback {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 20px;
}

.form-feedback.success { color: #2a7a2a; }
.form-feedback.error   { color: #cc0033; }


/* ══════════════════════════════════════════════════
   LEGAL PAGE
══════════════════════════════════════════════════ */

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2vh 0 8vh;
}

.legal-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(28, 23, 19, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.legal-card:hover {
  box-shadow: 0 8px 40px rgba(28, 23, 19, 0.15);
}

.legal-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
}

.legal-card-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-card--wide .legal-card-thumb {
  width: 280px;
  height: auto;
}

.legal-thumb--vop,
.legal-thumb--gdpr,
.legal-thumb--licence,
.legal-thumb--sod,
.legal-thumb--cenik   { background: #e0d5c8; }

.legal-thumb-icon {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.legal-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.legal-tag {
  display: inline-block;
  padding: 3px 12px;
  background: #ff0068;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.legal-tag--neutral { background: #6b7a8d; }
.legal-tag--price   { background: #2d2621; }

.legal-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d2621;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.legal-card-desc {
  font-size: 0.9rem;
  color: #6b5c4e;
  line-height: 1.7;
  flex: 1;
  margin: 0 0 1.75rem;
}

.legal-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.legal-btn-primary {
  display: inline-block;
  padding: 10px 24px;
  background: #ff0068;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  font-family: inherit;
}

.legal-btn-primary:hover { background: #d4005a; color: #fff; }

.legal-btn-secondary {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #2d2621;
  border: 2px solid #2d2621;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.legal-btn-secondary:hover {
  background: #2d2621;
  color: #f9f7ef;
}

/* ── Legal Modals ─────────────────────────────────────────── */

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 23, 19, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.legal-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.legal-modal-box {
  background: #f9f7ef;
  border-radius: 20px;
  padding: 3rem;
  max-width: 680px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s ease;
}

.legal-modal.is-open .legal-modal-box {
  transform: translateY(0) scale(1);
}

.legal-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: #2d2621;
  line-height: 1;
  transition: color 0.2s;
  font-family: inherit;
}

.legal-modal-close:hover { color: #ff0068; }

.legal-modal-counter {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ff0068;
  margin-bottom: 0.6rem;
}

.legal-modal-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #2d2621;
  margin: 0 0 1.25rem;
  padding-right: 2.5rem;
  line-height: 1.25;
}

.legal-modal-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a3f36;
  margin: 0 0 0.75rem;
}

.legal-modal-body p:last-child { margin-bottom: 0; }

.legal-modal-body ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
  padding: 0;
}

.legal-modal-body li {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #4a3f36;
}

.legal-modal-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
}

.legal-modal-prev,
.legal-modal-next {
  background: #2d2621;
  color: #f9f7ef;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.legal-modal-prev:hover,
.legal-modal-next:hover { background: #ff0068; }

/* ── Preview Modal ───────────────────────────────────────── */

.legal-modal-box--preview {
  max-width: 760px;
}

.preview-area {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0ede3;
  border-radius: 12px;
  margin-top: 1.25rem;
  gap: 1rem;
  color: #8a7a6e;
}

.preview-placeholder-icon {
  width: 56px;
  opacity: 0.35;
}

.preview-placeholder-text {
  font-size: 0.88rem;
  margin: 0;
}

/* ── Ceník Modal ─────────────────────────────────────────── */

.legal-modal-box--cenik {
  max-width: 760px;
}

.cenik-tabs {
  display: flex;
  background: #f0ede3;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 1.75rem;
}

.cenik-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #8a7a6e;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.cenik-tab.is-active {
  background: #ff0068;
  color: #fff;
}

.cenik-panel { display: none; }
.cenik-panel.is-active { display: block; }

.cenik-note {
  font-size: 0.88rem;
  color: #6b5c4e;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.cenik-tier-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cenik-tier {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid #ff0068;
}

.cenik-tier-name {
  font-weight: 700;
  color: #2d2621;
  font-size: 0.88rem;
  min-width: 175px;
}

.cenik-tier-price {
  font-weight: 700;
  color: #ff0068;
  font-size: 0.92rem;
  min-width: 155px;
}

.cenik-tier-desc {
  font-size: 0.8rem;
  color: #8a7a6e;
}

.cenik-disclaimer {
  font-size: 0.78rem;
  color: #8a7a6e;
  margin-top: 1.75rem;
  text-align: center;
  font-style: italic;
}

/* ── Legal responsive ────────────────────────────────────── */

@media (max-width: 768px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-card--wide {
    flex-direction: column;
  }

  .legal-card--wide .legal-card-thumb {
    width: 100%;
    height: 160px;
  }

  .cenik-tier {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cenik-tier-name,
  .cenik-tier-price {
    min-width: unset;
  }
}
  
  
  
  
  
  
  
  
  
  


