@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Playfair+Display:wght@400;700&display=swap');

.strip.is-sticky {
    position: sticky;
    top: var(--proweb-sticky-offset, 0px);
    z-index: calc(900 - var(--proweb-sticky-index, 0));
}
.strip.underlay-sticky {
    margin-top: calc(-1 * var(--sticky-header-height, 0px)) !important;
}

.strip.underlay-sticky > :first-child {
    border-top: var(--sticky-header-height, 0px) solid transparent !important;
    background-origin: border-box !important;
    background-clip: border-box !important;
}

/* In the admin editor, strip-controls is injected as the first child. We bypass it to style the actual user section content. */
.strip.underlay-sticky > .strip-controls {
    border-top: none !important;
}

.strip.underlay-sticky > .strip-controls + * {
    border-top: var(--sticky-header-height, 0px) solid transparent !important;
    background-origin: border-box !important;
    background-clip: border-box !important;
}

/* Administration Editor: collapse strip divider immediately preceding an underlay strip */
.strip-divider:has(+ .strip.underlay-sticky) {
    height: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

.strip-divider:has(+ .strip.underlay-sticky) * {
    display: none !important;
}.strip[data-id="714c6a"] {
  --section-id: "714c6a";
  --storage-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/714c6a";
  --public-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/714c6a";
  /* Mobile Toggle */
  /* Mobile Menu Overlay */
}
.strip[data-id="714c6a"] .header-wrapper {
  width: 100%;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 185, 139, 0.2);
  position: relative;
  z-index: 1000;
}
.strip[data-id="714c6a"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.strip[data-id="714c6a"] .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.strip[data-id="714c6a"] .logo-link:hover {
  transform: scale(1.03);
}
.strip[data-id="714c6a"] .logo-img {
  max-height: 55px;
  width: auto;
  display: block;
  border-radius: 4px;
}
.strip[data-id="714c6a"] .nav-desktop {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.strip[data-id="714c6a"] .nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.strip[data-id="714c6a"] .nav-link:hover {
  color: #4a3728;
}
.strip[data-id="714c6a"] .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #e8b98b;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.strip[data-id="714c6a"] .nav-link:hover::after {
  width: 100%;
  left: 0;
}
.strip[data-id="714c6a"] .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}
.strip[data-id="714c6a"] .hamburger span {
  width: 100%;
  height: 2px;
  background-color: #4a3728;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.strip[data-id="714c6a"] .hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.strip[data-id="714c6a"] .hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.strip[data-id="714c6a"] .hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.strip[data-id="714c6a"] .mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1005;
}
.strip[data-id="714c6a"] .mobile-overlay.active {
  right: 0;
}
.strip[data-id="714c6a"] .nav-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.strip[data-id="714c6a"] .nav-mobile li {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.strip[data-id="714c6a"] .mobile-overlay.active .nav-mobile li {
  opacity: 1;
  transform: translateY(0);
}
.strip[data-id="714c6a"] .mobile-overlay.active .nav-mobile li:nth-child(1) {
  transition-delay: 0.1s;
}
.strip[data-id="714c6a"] .mobile-overlay.active .nav-mobile li:nth-child(2) {
  transition-delay: 0.15s;
}
.strip[data-id="714c6a"] .mobile-overlay.active .nav-mobile li:nth-child(3) {
  transition-delay: 0.2s;
}
.strip[data-id="714c6a"] .mobile-overlay.active .nav-mobile li:nth-child(4) {
  transition-delay: 0.25s;
}
.strip[data-id="714c6a"] .nav-mobile .nav-link {
  font-size: 22px;
  display: block;
}
@media (max-width: 991px) {
  .strip[data-id="714c6a"] .nav-desktop {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="714c6a"] .nav-desktop {
    display: none;
  }
  .strip[data-id="714c6a"] .hamburger {
    display: flex;
  }
  .strip[data-id="714c6a"] .container {
    padding: 15px 20px;
  }
}.strip[data-id="7d1f41"] {
  --section-id: "7d1f41";
  --storage-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/7d1f41";
  --public-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/7d1f41";
}
.strip[data-id="7d1f41"] .hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("/_section/7d1f41/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.strip[data-id="7d1f41"] .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.strip[data-id="7d1f41"] .particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.strip[data-id="7d1f41"] .particle {
  position: absolute;
  background: rgba(232, 185, 139, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: float 15s infinite linear;
}
@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(50px) rotate(360deg);
    opacity: 0;
  }
}
.strip[data-id="7d1f41"] .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}
.strip[data-id="7d1f41"] .content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.strip[data-id="7d1f41"] h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 6vw, 64px);
  color: #fdfbf7;
  line-height: 1.1;
  margin: 0 0 24px 0;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.6);
}
.strip[data-id="7d1f41"] p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #fdfbf7;
  line-height: 1.7;
  margin: 0 auto 48px auto;
  max-width: 750px;
  font-weight: 400;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.strip[data-id="7d1f41"] .cta-wrapper {
  display: flex;
  justify-content: center;
}
.strip[data-id="7d1f41"] .btn {
  display: inline-block;
  background-color: #e8b98b;
  color: #2c1e14;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 22px 55px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.strip[data-id="7d1f41"] .btn:hover {
  transform: translateY(-5px);
  background-color: #f2c9a1;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .strip[data-id="7d1f41"] .hero-section {
    min-height: 85vh;
    background-attachment: scroll;
  }
  .strip[data-id="7d1f41"] .container {
    padding: 80px 20px;
  }
  .strip[data-id="7d1f41"] h1 {
    margin-bottom: 20px;
  }
  .strip[data-id="7d1f41"] p {
    margin-bottom: 40px;
  }
  .strip[data-id="7d1f41"] .btn {
    padding: 18px 40px;
    width: 100%;
    max-width: 320px;
    font-size: 14px;
  }
}.strip[data-id=aa9cc2] {
  --section-id: "aa9cc2";
  --storage-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/aa9cc2";
  --public-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/aa9cc2";
  /* Centering the last row if it has fewer items */
}
.strip[data-id=aa9cc2] .services-overview {
  background-color: #fdfbf7;
  padding: 100px 20px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}
.strip[data-id=aa9cc2] .decoration-leaf {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  opacity: 0.03;
  pointer-events: none;
  color: #4a3728;
}
.strip[data-id=aa9cc2] .decoration-leaf-bottom {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  opacity: 0.03;
  pointer-events: none;
  color: #4a3728;
  transform: rotate(180deg);
}
.strip[data-id=aa9cc2] .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.strip[data-id=aa9cc2] .header {
  text-align: center;
  margin-bottom: 70px;
}
.strip[data-id=aa9cc2] h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #4a3728;
  margin-bottom: 20px;
  font-weight: 700;
}
.strip[data-id=aa9cc2] .divider {
  width: 60px;
  height: 3px;
  background-color: #e8b98b;
  margin: 0 auto 25px;
  border-radius: 2px;
}
.strip[data-id=aa9cc2] .header p {
  font-size: 18px;
  color: #5a4a3a;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}
.strip[data-id=aa9cc2] .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
}
.strip[data-id=aa9cc2] .services-grid::after {
  content: "";
  display: none;
}
.strip[data-id=aa9cc2] .service-card {
  background-color: #ffffff;
  padding: 50px 35px;
  border-radius: 30px 10px 30px 10px;
  box-shadow: 0 15px 45px rgba(74, 55, 40, 0.04);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(232, 185, 139, 0.1);
}
.strip[data-id=aa9cc2] .service-card:hover {
  background-color: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(74, 55, 40, 0.08);
  border-color: rgba(232, 185, 139, 0.3);
}
.strip[data-id=aa9cc2] .icon-container {
  margin-bottom: 30px;
  position: relative;
}
.strip[data-id=aa9cc2] .icon-circle {
  width: 90px;
  height: 90px;
  background-color: rgba(232, 185, 139, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.strip[data-id=aa9cc2] .icon-circle i {
  font-size: 36px;
  color: #4a3728;
  transition: all 0.5s ease;
}
.strip[data-id=aa9cc2] .service-card:hover .icon-circle {
  background-color: #e8b98b;
  animation: sway 1.2s ease-in-out infinite;
}
.strip[data-id=aa9cc2] .service-card:hover .icon-circle i {
  color: #ffffff;
}
@keyframes sway {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-8deg);
  }
}
.strip[data-id=aa9cc2] .card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #4a3728;
  margin-bottom: 18px;
  font-weight: 700;
}
.strip[data-id=aa9cc2] .card-content p {
  font-size: 16px;
  color: #5a4a3a;
  line-height: 1.6;
  margin-bottom: 25px;
}
.strip[data-id=aa9cc2] .card-link {
  font-size: 14px;
  font-weight: 600;
  color: #e8b98b;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.strip[data-id=aa9cc2] .service-card:hover .card-link {
  gap: 12px;
  color: #4a3728;
}
@media (max-width: 1100px) {
  .strip[data-id=aa9cc2] .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .strip[data-id=aa9cc2] .services-overview {
    padding: 70px 20px;
  }
  .strip[data-id=aa9cc2] h2 {
    font-size: 36px;
  }
  .strip[data-id=aa9cc2] .header {
    margin-bottom: 50px;
  }
  .strip[data-id=aa9cc2] .service-card {
    padding: 40px 25px;
  }
}
@media (max-width: 600px) {
  .strip[data-id=aa9cc2] .services-grid {
    grid-template-columns: 1fr;
  }
  .strip[data-id=aa9cc2] .decoration-leaf, .strip[data-id=aa9cc2] .decoration-leaf-bottom {
    display: none;
  }
}.strip[data-id=c0c4f0] {
  --section-id: "c0c4f0";
  --storage-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/c0c4f0";
  --public-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/c0c4f0";
}
.strip[data-id=c0c4f0] .price-list-section {
  background-color: #fdfbf7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  min-height: 100vh;
}
.strip[data-id=c0c4f0] .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
}
.strip[data-id=c0c4f0] .header-group {
  text-align: center;
  margin-bottom: 80px;
}
.strip[data-id=c0c4f0] h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #4a3728;
  margin: 0 0 20px 0;
  font-weight: 700;
}
.strip[data-id=c0c4f0] .lotus-separator {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.strip[data-id=c0c4f0] .price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.strip[data-id=c0c4f0] .price-category {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(74, 55, 40, 0.15);
  padding: 45px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(74, 55, 40, 0.05);
}
.strip[data-id=c0c4f0] .price-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(74, 55, 40, 0.1);
  border-color: rgba(74, 55, 40, 0.3);
}
.strip[data-id=c0c4f0] h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #8c6239;
  margin: 0 0 35px 0;
  font-weight: 700;
  border-bottom: 2px solid rgba(140, 98, 57, 0.2);
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.strip[data-id=c0c4f0] ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id=c0c4f0] li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #2d2d2d;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  line-height: 1.5;
}
.strip[data-id=c0c4f0] li:last-child {
  margin-bottom: 0;
}
.strip[data-id=c0c4f0] .dots {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(45, 45, 45, 0.35);
  margin: 0 15px;
  position: relative;
  top: -4px;
}
.strip[data-id=c0c4f0] .price {
  font-weight: 600;
  white-space: nowrap;
  color: #4a3728;
}
.strip[data-id=c0c4f0] .service-note {
  font-style: italic;
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  display: block;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .strip[data-id=c0c4f0] .price-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .strip[data-id=c0c4f0] .price-list-section {
    padding: 80px 0;
  }
  .strip[data-id=c0c4f0] h2 {
    font-size: 36px;
  }
  .strip[data-id=c0c4f0] .price-category {
    padding: 30px;
  }
  .strip[data-id=c0c4f0] li {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  .strip[data-id=c0c4f0] .dots {
    display: none;
  }
  .strip[data-id=c0c4f0] .price {
    margin-top: 4px;
    font-size: 18px;
    color: #8c6239;
  }
}.strip[data-id=d3b671] {
  --section-id: "d3b671";
  --storage-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/d3b671";
  --public-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/d3b671";
  /* Irregular Grid Layout */
}
.strip[data-id=d3b671] section {
  background-color: #4a3728;
  background-image: radial-gradient(circle at 20% 30%, rgba(232, 185, 139, 0.03) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(232, 185, 139, 0.03) 0%, transparent 20%), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l2.5 10L40 12.5l-10 2.5-2.5 10L20 17.5l10-2.5 2.5-10L30 0zM0 30l2.5 10L10 42.5l-10 2.5-2.5 10L0 47.5l10-2.5 2.5-10L0 30z' fill='%23544031' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 100px 20px;
  overflow: hidden;
  position: relative;
}
.strip[data-id=d3b671] .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.strip[data-id=d3b671] .header {
  text-align: center;
  margin-bottom: 70px;
}
.strip[data-id=d3b671] .decoration-icon {
  display: block;
  margin: 0 auto 20px;
  width: 40px;
  height: 40px;
  color: #e8b98b;
  opacity: 0.8;
}
.strip[data-id=d3b671] h2 {
  color: #fdfbf7;
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.strip[data-id=d3b671] p {
  color: #fdfbf7;
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 650px;
  margin: 0 auto;
}
.strip[data-id=d3b671] .gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 24px;
}
.strip[data-id=d3b671] .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(232, 185, 139, 0.1);
  background: #3d2d21;
  opacity: 0;
  transform: translateY(30px);
}
.strip[data-id=d3b671] .gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.strip[data-id=d3b671] .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  display: block;
}
.strip[data-id=d3b671] .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(74, 55, 40, 0.4));
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.strip[data-id=d3b671] .gallery-item:hover {
  transform: scale(1.02) translateY(-5px) !important;
  border-color: rgba(232, 185, 139, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.strip[data-id=d3b671] .gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.05);
}
.strip[data-id=d3b671] .gallery-item:hover::after {
  opacity: 0;
}
.strip[data-id=d3b671] .item-1 {
  grid-column: span 5;
  grid-row: span 3;
}
.strip[data-id=d3b671] .item-2 {
  grid-column: span 4;
  grid-row: span 2;
}
.strip[data-id=d3b671] .item-3 {
  grid-column: span 3;
  grid-row: span 4;
}
.strip[data-id=d3b671] .item-4 {
  grid-column: span 4;
  grid-row: span 2;
}
.strip[data-id=d3b671] .item-5 {
  grid-column: span 5;
  grid-row: span 1;
}
@media (max-width: 1024px) {
  .strip[data-id=d3b671] .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
  }
  .strip[data-id=d3b671] .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .strip[data-id=d3b671] h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 640px) {
  .strip[data-id=d3b671] .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .strip[data-id=d3b671] section {
    padding: 60px 20px;
  }
  .strip[data-id=d3b671] h2 {
    font-size: 2rem;
  }
  .strip[data-id=d3b671] p {
    font-size: 1.1rem;
  }
}@charset "UTF-8";
.strip[data-id=df8b43] {
  --section-id: "df8b43";
  --storage-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/df8b43";
  --public-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/df8b43";
  /* Decorative element */
}
.strip[data-id=df8b43] .contact-section {
  background-color: #fdfbf7;
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}
.strip[data-id=df8b43] .contact-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 185, 139, 0.1) 0%, rgba(253, 251, 247, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}
.strip[data-id=df8b43] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.strip[data-id=df8b43] .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.strip[data-id=df8b43] h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #4a3728;
  margin-bottom: 40px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}
.strip[data-id=df8b43] h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #e8b98b;
  border-radius: 2px;
}
.strip[data-id=df8b43] .info-content p {
  font-size: 18px;
  color: #2d2d2d;
  line-height: 1.7;
  margin-bottom: 20px;
}
.strip[data-id=df8b43] .info-content .name {
  font-weight: 700;
  color: #bc7d4b; /* Darker version for better contrast on light background */
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}
.strip[data-id=df8b43] .contact-details {
  margin-top: 40px;
  margin-bottom: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(74, 55, 40, 0.05);
}
.strip[data-id=df8b43] .detail {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.strip[data-id=df8b43] .detail:last-child {
  margin-bottom: 0;
}
.strip[data-id=df8b43] .detail .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.strip[data-id=df8b43] .detail:hover .icon {
  transform: scale(1.1);
}
.strip[data-id=df8b43] .detail p {
  margin-bottom: 0;
}
.strip[data-id=df8b43] .highlight {
  color: #bc7d4b; /* Darker version for better contrast */
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.strip[data-id=df8b43] a.highlight:hover {
  color: #4a3728;
}
.strip[data-id=df8b43] .note {
  font-style: italic;
  margin-top: 25px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip[data-id=df8b43] .note::before {
  content: "✨";
  font-style: normal;
}
.strip[data-id=df8b43] .map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(74, 55, 40, 0.12);
  background: #fff;
  padding: 12px;
  border: 1px solid rgba(74, 55, 40, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}
.strip[data-id=df8b43] .map-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px rgba(74, 55, 40, 0.18);
}
.strip[data-id=df8b43] .map-wrapper iframe {
  border-radius: 12px;
  display: block;
}
@media (max-width: 991px) {
  .strip[data-id=df8b43] .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .strip[data-id=df8b43] .contact-section {
    padding: 80px 0;
  }
  .strip[data-id=df8b43] .map-wrapper iframe {
    height: 350px;
  }
  .strip[data-id=df8b43] h2 {
    font-size: 38px;
    text-align: center;
    display: block;
  }
  .strip[data-id=df8b43] h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .strip[data-id=df8b43] .contact-info {
    text-align: center;
  }
  .strip[data-id=df8b43] .detail {
    justify-content: center;
    text-align: left;
  }
  .strip[data-id=df8b43] .note {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .strip[data-id=df8b43] .contact-details {
    padding: 20px;
  }
  .strip[data-id=df8b43] .detail {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}.strip[data-id="40b565"] {
  --section-id: "40b565";
  --storage-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/40b565";
  --public-url: "https://preview-re-hyb-cz-20260612-02.praweb.cz/_section/40b565";
}
.strip[data-id="40b565"] .footer-section {
  background-color: #4a3728;
  padding: 60px 20px;
  border-top: 1px solid rgba(232, 185, 139, 0.2);
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.strip[data-id="40b565"] .footer-decoration {
  color: #e8b98b;
  opacity: 0.6;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip[data-id="40b565"] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.strip[data-id="40b565"] .footer-content {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: rgba(253, 251, 247, 0.8);
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.strip[data-id="40b565"] .footer-content p {
  margin: 0;
}
.strip[data-id="40b565"] .developer-link {
  color: rgba(253, 251, 247, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 251, 247, 0.3);
  padding-bottom: 1px;
  transition: all 0.3s ease;
}
.strip[data-id="40b565"] .developer-link:hover {
  color: #e8b98b;
  border-bottom-color: #e8b98b;
}
@media (max-width: 768px) {
  .strip[data-id="40b565"] .footer-section {
    padding: 40px 20px;
  }
  .strip[data-id="40b565"] .footer-content .mobile-break {
    display: block;
    margin-top: 8px;
  }
}