/**
 * Domy Brzeziny 2 - Custom Design System (Premium & Unified)
 * Consolidates all previously scattered styles into one clean sheet.
 * Incorporates a premium real estate grid layout and unified tokens.
 */

:root {
  /* Colors */
  --color-primary: #2c5734;       /* Bottle Green */
  --color-primary-dark: #1b3620;  /* Darker shade */
  --color-accent: #56773f;        /* Soft Sage Green */
  --color-accent-light: #f4f7ed;  /* Warm Light Green */
  --color-bg-light: #f7f8fa;      /* Main light background */
  --color-bg-card: #ffffff;       /* Pure white for cards */
  --color-text-main: #383838;     /* Sleek dark grey */
  --color-text-muted: #666666;    /* Medium grey */
  --color-white: #ffffff;
  --color-border: #ebf2ed;        /* High-end soft green-gray border */
  --color-border-dark: #cbdcd0;
  --color-shadow: rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-main: 'Poppins', Arial, sans-serif;

  /* Borders & Spacing */
  --border-radius-premium: 12px;
  --border-radius-small: 8px;
  --spacing-section: clamp(60px, 8vw, 100px);
  --spacing-section-mobile: 40px;
}

/* --- TYPOGRAPHY & RESET --- */
body, p, .ff-richtext, li, li a, a, h1, h2, h3, h4, h5, h6,
.blog-grid-title-el, .blog-teaser-category-title, .ftr-text, .k1-text,
.room-title-v2, .room-area-v2, .room-number-v2, .status, .pdf-link,
.benefit-card, .db-feature, .loc-card, .property-table, .panel-title a {
  font-family: var(--font-main) !important;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
}

p, p.ffb-paragraph-2, li, li a, a, .section-heading>.ff-richtext.paragraph * {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-text-main);
}

/* --- HEADINGS STANDARDIZATION --- */
h2, .section-heading, .ffb-id-92vijl5c, .ffb-id-8nt7l290, .ffb-id-93a77p1n, .ffb-id-8nt7iopm, .loc-header h2, .content-section h3 {
  font-size: clamp(26px, 4vw, 32px) !important;
  font-weight: 900 !important;
  color: var(--color-primary) !important;
  text-align: center !important;
  margin-bottom: clamp(20px, 3vw, 40px) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em;
}

h3, .content-section h3, .loc-card h3, .benefit-card h4, .db-feature h4 {
  font-size: clamp(18px, 2.5vw, 22px) !important;
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  line-height: 1.35 !important;
  margin-top: 0;
}

/* --- SPACING & ODDECHY (WHITESPACE) --- */
.fg-section, .db_section, .ffb-id-8nt7l28t, .ffb-id-8nt7iopj, .ffb-id-8nt7j4vk, .ffb-id-8nt7i077, .ffb-id-8nt6stro {
  padding-top: var(--spacing-section) !important;
  padding-bottom: var(--spacing-section) !important;
}

@media (max-width: 991px) {
  .fg-section, .db_section, .ffb-id-8nt7l28t, .ffb-id-8nt7iopj, .ffb-id-8nt7j4vk, .ffb-id-8nt7i077, .ffb-id-8nt6stro {
    padding-top: var(--spacing-section-mobile) !important;
    padding-bottom: var(--spacing-section-mobile) !important;
  }
}

/* --- PREMIUM BUTTONS --- */
.zap-submit, .cookie-btn, .btn-base-brd-slide, a.ffb-btn {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-primary) !important;
  border-radius: var(--border-radius-small) !important;
  padding: 12px 28px !important;
  font-family: var(--font-main) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 4px rgba(44, 87, 52, 0.08) !important;
}

.zap-submit:hover, .cookie-btn:hover, .btn-base-brd-slide:hover, a.ffb-btn:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: var(--color-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(117, 158, 88, 0.25) !important;
}

.zap-submit:active, .cookie-btn:active, .btn-base-brd-slide:active, a.ffb-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px rgba(117, 158, 88, 0.1) !important;
}

/* --- DYNAMIC BLOCKS & CARDS --- */
.container.db_block,
.fg-container.db_block {
  box-sizing: border-box;
  border-radius: var(--border-radius-premium);
  border: 1px solid var(--color-border);
  padding: 20px 20px 20px !important;
  background: var(--color-bg-card);
  box-shadow: 0 4px 20px var(--color-shadow);
  transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .container.db_block,
  .fg-container.db_block {
    padding: 35px !important;
  }
}

.container.db_block:hover,
.fg-container.db_block:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: var(--color-border-dark);
}

@media (min-width: 768px) {
  .db_section .fg-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .db_section .fg-row > .fg-col > .db_block {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}

/* --- CUBE PORTFOLIO & LIGHTBOX --- */
.cbp-item .cbp-item-wrapper,
.cbp-item .cbp-caption-defaultWrap,
.cbp-item .cbp-caption-defaultWrap img {
  border-radius: var(--border-radius-premium) !important;
  box-sizing: border-box;
}

.cbp-item .cbp-item-wrapper {
  border: 1px solid var(--color-border) !important;
  background: var(--color-bg-card);
  box-shadow: 0 4px 16px var(--color-shadow) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cbp-item .cbp-item-wrapper:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-4px);
}

/* --- STANDARD WYKONANIA ACCORDION --- */
.panel-group .panel {
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 12px !important;
  background: transparent !important;
}

.panel-heading {
  padding: 0 !important;
  border: none !important;
}

.ffb-id-8ntabual .panel-title > a {
  display: block;
  padding: 16px 24px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--color-white) !important;
  border-radius: var(--border-radius-small) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
  position: relative;
}

.ffb-id-8ntabual .panel-title > a .fg-bg-layer {
  border-radius: var(--border-radius-small) !important;
}

.ffb-id-8ntabual .panel-body {
  border-radius: 0 0 var(--border-radius-small) var(--border-radius-small) !important;
  border: 1px solid var(--color-border) !important;
  border-top: none !important;
  background-color: var(--color-bg-light) !important;
  padding: 24px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* --- PREMIUM AVAILABILITY STYLES (.dostepnosc) --- */

.dostepnosc-custom-section {
  padding: 80px 0;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .dostepnosc-custom-section {
    padding: 50px 0;
  }
}

.dostepnosc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.status-legend-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px auto 40px auto;
  padding: 14px 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  width: max-content;
  max-width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 1), 0 2px 4px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.legend-dot.dot-available {
  background: #2E7D32;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 1), 0 2px 4px rgba(46, 125, 50, 0.25);
}

.legend-dot.dot-reserved {
  background: #E65100;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 1), 0 2px 4px rgba(230, 81, 0, 0.25);
}

.legend-dot.dot-sold {
  background: #546E7A;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 1), 0 2px 4px rgba(84, 110, 122, 0.25);
}

.legend-dot.dot-pending {
  background: #90A4AE;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 1), 0 2px 4px rgba(144, 164, 174, 0.25);
}

/* Table Design */
.table-responsive-wrapper {
  background: var(--color-white);
  border-radius: var(--border-radius-premium);
  box-shadow: 0 0 0 1px var(--color-border), 0 12px 40px rgba(0, 0, 0, 0.04);
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 25px;
}

.property-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: none !important;
}

.property-table thead {
  background-color: var(--color-primary);
}

.property-table th {
  color: var(--color-white) !important;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 11px;
  border: none;
  text-align: left;
}

.property-table td {
  padding: 16px 11px;
  font-size: 15px;
  color: var(--color-text-main) !important;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  font-weight: 500;
  white-space: nowrap;
}

.property-table tbody tr {
  transition: all 0.2s ease-in-out;
}

.property-table tbody tr:last-child td {
  border-bottom: none !important;
}

.property-table tbody tr.row-available {
  background-color: rgba(117, 158, 88, 0.03);
}

.property-table tbody tr:hover {
  background-color: rgba(44, 87, 52, 0.03) !important;
}

/* Prospekt informacyjny — pasek pod tabelą */
.prospekt-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 24px 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--border-radius-premium);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.prospekt-cta-info {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.prospekt-cta-doc {
  color: var(--color-primary);
  flex-shrink: 0;
}

.prospekt-cta-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.prospekt-cta-text strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
}

.prospekt-cta-text span {
  font-size: 14px;
  color: var(--color-text-muted, #777);
  line-height: 1.5;
}

.prospekt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 13px 24px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.prospekt-cta-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* Wymuś biały tekst/ikonę w każdym stanie linku (m.in. :visited po powrocie z PDF) */
.prospekt-cta-btn,
.prospekt-cta-btn:link,
.prospekt-cta-btn:visited,
.prospekt-cta-btn:hover,
.prospekt-cta-btn:focus,
.prospekt-cta-btn:active,
.prospekt-cta-btn span,
.prospekt-cta-btn svg {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .prospekt-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .prospekt-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.status-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-badge.available {
  background-color: #E8F5E9 !important;
  color: #2E7D32 !important;
  border: 1px solid #c8e6c9 !important;
}
.status-badge.available .badge-dot {
  background-color: #2E7D32;
}

.status-badge.reserved {
  background-color: #FFF3E0 !important;
  color: #E65100 !important;
  border: 1px solid #ffe0b2 !important;
}
.status-badge.reserved .badge-dot {
  background-color: #E65100;
}

.status-badge.sold {
  background-color: #ECEFF1 !important;
  color: #546E7A !important;
  border: 1px solid #cfd8dc !important;
}
.status-badge.sold .badge-dot {
  background-color: #546E7A;
}

.status-badge.pending {
  background-color: #F5F7F8 !important;
  color: #78909C !important;
  border: 1px solid #ECEFF1 !important;
}
.status-badge.pending .badge-dot {
  background-color: #90A4AE;
}

/* PDF Link Design */
.house-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary) !important;
  text-decoration: none !important;
  background: var(--color-accent-light) !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  border: 1px solid var(--color-border-dark) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  letter-spacing: 0.5px;
}

.house-pdf-btn:hover {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(44, 87, 52, 0.15) !important;
}

.house-pdf-btn:hover .pdf-btn-arrow {
  transform: translateX(3px);
}

.pdf-btn-icon, .pdf-btn-arrow {
  transition: transform 0.2s ease;
}

/* Responsive Cards (Mobile) */
@media screen and (max-width: 991px) {
  .status-legend-bar {
    width: 100%;
    border-radius: var(--border-radius-premium);
    padding: 15px;
    gap: 15px;
    margin-bottom: 25px;
  }

  .table-responsive-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .property-table {
    display: block !important;
  }

  .property-table thead {
    display: none !important; /* Hide header on mobile */
  }

  .property-table tbody {
    display: grid !important;
    grid-template-columns: 1fr !important; /* Single column layout for mobile cards */
    gap: 20px !important;
    width: 100%;
  }

  .property-table tr {
    display: flex !important;
    flex-direction: column !important;
    background: var(--color-white) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--border-radius-premium) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03) !important;
    padding: 20px 24px !important;
    transition: all 0.25s ease !important;
  }

  .property-table tr:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(44, 87, 52, 0.08) !important;
    background-color: var(--color-white) !important;
    border-color: var(--color-border-dark) !important;
  }

  .property-table tr.row-available {
    background-color: var(--color-white) !important;
    border-left: 4px solid var(--color-accent) !important;
  }

  .property-table td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #f5f8f6 !important;
    font-size: 15px !important;
    text-align: right !important;
  }

  .property-table td:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-top: 12px !important;
  }

  .property-table td::before {
    content: attr(data-label) !important;
    font-weight: 600 !important;
    color: var(--color-text-muted) !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
    text-align: left !important;
  }

  .property-table td.td-house {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--color-primary) !important;
    border-bottom: 2px solid var(--color-border) !important;
    padding-bottom: 10px !important;
    margin-bottom: 5px !important;
  }

  .property-table td.td-house::before {
    font-size: 13px !important;
    color: var(--color-primary) !important;
  }

  .property-table td.td-price {
    font-weight: 700 !important;
    color: var(--color-primary) !important;
  }

  .house-pdf-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px !important;
  }
}


/* --- LOKALIZACJA PREMIUM --- */
.loc-premium-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}

.loc-card {
  background: var(--color-bg-card);
  padding: 30px;
  border-radius: var(--border-radius-premium);
  box-shadow: 0 10px 30px var(--color-shadow);
  border-top: 4px solid var(--color-accent);
}

.loc-footer {
  text-align: center;
  background: var(--color-accent-light);
  padding: 30px;
  border-radius: var(--border-radius-premium);
  border: 1px solid var(--color-border);
}

/* --- HEADER & MOBILE NAV --- */
@media screen and (max-width: 991px) {
  header .menu-container {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
  }

  header .navbar-toggle {
    border-radius: 8px !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
  }
}

/* --- KENBURNS HOME FRAME --- */
.th-hp-frame {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* --- COOKIE BANNER --- */
#cookie-banner {
  background: var(--color-bg-card) !important;
  border-top: 1px solid var(--color-border) !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06) !important;
}
.cookie-text {
  color: #333 !important;
}
.cookie-link {
  color: #2c5734 !important;
}

.cookie-btn {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-radius: 6px !important;
  padding: 8px 18px !important;
}

.cookie-btn:hover {
  background: var(--color-accent) !important;
}

/* --- FRESH FRAMEWORK HEADER & MENU RESPONSIVE SYSTEM --- */
@media (min-width: 992px) {
  .ffb-id-9alc2uoi {
    margin-top: 20px;
  }
}
@media screen and (max-width: 991px) {
  header .menu-container,
  header .template-beginning-of-header,
  header .ffb-id-9alc2uoi,
  header .ffb-id-9alc2uoi > .fg-container,
  header .ffb-id-9alc2uoi .fg-row {
    position: static !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
    float: none !important;
    clear: both !important;
  }
  header .navbar > .container {
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  header .menu-container {
    position: relative !important;
    background-color: var(--color-white) !important;
    width: 100% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }
  header .navbar-logo.ffb-logo {
    display: none !important;
  }
  header .ffb-id-9alc3ic0 {
    background-color: var(--color-bg-light) !important;
    border-bottom: 1px solid var(--color-border) !important;
    padding: 10px 15px !important;
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  header .ffb-id-9alc3ic0 .fg-vcenter {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px 25px !important;
    width: 100% !important;
  }
  header .ffb-id-9alc3ic0 .buttons-el-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }
  header .ffb-id-9alc3ic0 a.ffb-btn {
    padding: 0 !important;
    border: none !important;
    background: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
  }
  header .ffb-id-9alc3ic0 .btn-text {
    font-size: 14.5px !important;
    font-weight: 500 !important;
    color: var(--color-primary-dark) !important;
    font-family: inherit !important;
    letter-spacing: 0.2px !important;
  }
  header .ffb-id-9alc3ic0 .btn-base-element-icon {
    font-size: 15px !important;
    margin-right: 6px !important;
    color: var(--color-primary) !important;
    opacity: 0.9 !important;
  }
  header .ffb-id-9alc2uoj {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 18px 20px !important;
    padding-right: 80px !important;
    margin: 0 !important;
    background: var(--color-white) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: 80px !important;
  }
  header a.ffb-id-96rip6qa.responsive-image-wrapper {
    display: block !important;
    max-width: 210px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  header .ffb-id-9alc2uoj img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
  }
  header .navbar-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    bottom: 18px !important;
    right: 15px !important;
    top: auto !important;
    left: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 999 !important;
    background: var(--color-white) !important;
    border: 1px solid var(--color-border-dark) !important;
    border-radius: var(--border-radius-small) !important;
    height: 42px !important;
    width: 48px !important;
    box-sizing: border-box !important;
    box-shadow: 0 1px 3px var(--color-shadow) !important;
    transition: all 0.2s ease !important;
  }
  header .navbar-toggle:active {
    background: #f1f1f1 !important;
  }
  header .navbar-toggle .toggle-icon {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background-color: var(--color-primary) !important;
    position: relative !important;
    border-radius: 2px !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
  header .navbar-toggle .toggle-icon::before,
  header .navbar-toggle .toggle-icon::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    width: 22px !important;
    height: 2px !important;
    background-color: var(--color-primary) !important;
    border-radius: 2px !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
  header .navbar-toggle .toggle-icon::before {
    top: -8px !important;
    bottom: auto !important;
  }
  header .navbar-toggle .toggle-icon::after {
    top: 8px !important;
    bottom: auto !important;
  }
  header .navbar-toggle .icon-bar {
    display: none !important;
  }
  header .navbar-toggle .sr-only {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  header .ffb-id-9alc3ic0 .fg-vcenter {
    gap: 6px 15px !important;
  }
  header .ffb-id-9alc3ic0 .btn-text {
    font-size: 13.5px !important;
  }
  header .ffb-id-9alc3ic0 {
    padding: 10px 10px !important;
  }
  header a.ffb-id-96rip6qa.responsive-image-wrapper {
    max-width: 175px !important;
  }
  header .ffb-id-9alc2uoj {
    padding: 15px 15px !important;
    padding-right: 75px !important;
  }
  header .navbar-toggle {
    bottom: 15px !important;
    right: 15px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  header .ffb-id-9alc3ic0 .btn-text {
    font-size: 16px !important;
  }
  header .ffb-id-9alc3ic0 .btn-base-element-icon {
    font-size: 18px !important;
  }
  header .ffb-id-9alc3ic0 .fg-vcenter {
    gap: 15px 40px !important;
  }
}

@media screen and (max-width: 380px) {
  header .ffb-id-9alc3ic0 .btn-text {
    font-size: 12.5px !important;
  }
  header .ffb-id-9alc3ic0 .btn-base-element-icon {
    font-size: 13px !important;
  }
  header a.ffb-id-96rip6qa.responsive-image-wrapper {
    max-width: 150px !important;
  }
}

.ffb-id-96rip6qa {
  padding-right: 10px;
  padding-left: 10px;
}

.ffb-id-9alc3ic2 .ffb-button4-1.ffb-block-button-2-0.btn-base-brd-slide {
  color: var(--color-primary);
}
.ffb-id-9alc3ic2 .ffb-button4-1.ffb-block-button-2-0.btn-base-brd-slide:hover {
  color: var(--color-accent);
}
.ffb-id-9alc3ic2 .ffb-button4-1.ffb-block-button-2-0.btn-base-brd-slide i {
  color: var(--color-accent);
}
.ffb-id-9alc3ic2 .ffb-button4-1.ffb-block-button-2-0.btn-base-brd-slide {
  border-color: transparent;
}
.ffb-id-9alc3ic2 .ffb-button4-1.ffb-block-button-2-0.btn-base-brd-slide:hover {
  border-color: transparent;
}
.ffb-id-9alc3ic2 {
  font-weight: 400 !important;
}
.ffb-id-9alc3ic2 ,.ffb-id-9alc3ic2:before,.ffb-id-9alc3ic2:after,.ffb-id-9alc3ic2:hover,.ffb-id-9alc3ic2:focus,.ffb-id-9alc3ic2 *,.ffb-id-9alc3ic2 *:before,.ffb-id-9alc3ic2 *:after,.ffb-id-9alc3ic2 *:hover,.ffb-id-9alc3ic2 *:focus {
  font-weight: 400 !important;
}
@media (min-width:992px) {
  .ffb-id-9alc3ic2 {
    font-size: 14px !important;
  }
  .ffb-id-9alc3ic2 ,.ffb-id-9alc3ic2:before,.ffb-id-9alc3ic2:after,.ffb-id-9alc3ic2:hover,.ffb-id-9alc3ic2:focus,.ffb-id-9alc3ic2 *,.ffb-id-9alc3ic2 *:before,.ffb-id-9alc3ic2 *:after,.ffb-id-9alc3ic2 *:hover,.ffb-id-9alc3ic2 *:focus {
    font-size: 14px !important;
  }
}

.ffb-id-9alc3ic1 .ffb-button4-1.ffb-block-button-1-0.btn-base-brd-slide {
  color: var(--color-primary);
}
.ffb-id-9alc3ic1 .ffb-button4-1.ffb-block-button-1-0.btn-base-brd-slide:hover {
  color: var(--color-accent);
}
.ffb-id-9alc3ic1 .ffb-button4-1.ffb-block-button-1-0.btn-base-brd-slide i {
  color: var(--color-accent);
}
.ffb-id-9alc3ic1 .ffb-button4-1.ffb-block-button-1-0.btn-base-brd-slide {
  border-color: transparent;
}
.ffb-id-9alc3ic1 .ffb-button4-1.ffb-block-button-1-0.btn-base-brd-slide:hover {
  border-color: transparent;
}
.ffb-id-9alc3ic1 {
  font-weight: 600 !important;
}
.ffb-id-9alc3ic1 ,.ffb-id-9alc3ic1:before,.ffb-id-9alc3ic1:after,.ffb-id-9alc3ic1:hover,.ffb-id-9alc3ic1:focus,.ffb-id-9alc3ic1 *,.ffb-id-9alc3ic1 *:before,.ffb-id-9alc3ic1 *:after,.ffb-id-9alc3ic1 *:hover,.ffb-id-9alc3ic1 *:focus {
  font-weight: 600 !important;
}
@media (min-width:992px) {
  .ffb-id-9alc3ic1 {
    font-size: 24px !important;
  }
  .ffb-id-9alc3ic1 ,.ffb-id-9alc3ic1:before,.ffb-id-9alc3ic1:after,.ffb-id-9alc3ic1:hover,.ffb-id-9alc3ic1:focus,.ffb-id-9alc3ic1 *,.ffb-id-9alc3ic1 *:before,.ffb-id-9alc3ic1 *:after,.ffb-id-9alc3ic1 *:hover,.ffb-id-9alc3ic1 *:focus {
    font-size: 24px !important;
  }
}

/* --- CONTACT WIDGET (.kontakt-1) --- */
.kontakt-1 {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kontakt-1 a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text-main);
  padding: 10px 15px;
  background: #fdfdfd;
}
.kontakt-1 a.k1-phone {
  background: #f3f3f3;
}
.kontakt-1 a.k1-email {
  background: #f3f3f3;
  justify-content: center;
}
.kontakt-1 a:hover {
  background: #e9e9e9;
  color: var(--color-primary);
}
.kontakt-1 .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  margin-right: 15px;
  border-radius: 50%;
}
.kontakt-1 a.k1-phone .k1-text {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
}
.kontakt-1 a.k1-email .k1-text {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.kontakt-1 a.k1-email:hover .k1-text {
  color: var(--color-primary);
}

/* --- HEADER RESETS & SHRINKS --- */
header .navbar-logo,
header.header-shrink .navbar-logo {
  line-height: 0 !important;
}
header .navbar-logo-wrap img {
  max-height: none !important;
}
header .navbar-logo .navbar-logo-wrap {
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
@media (max-width: 991px) {
  header .navbar-logo .navbar-logo-img {
    max-width: none !important;
  }
  .header .navbar-actions .navbar-actions-shrink {
    max-height: none;
  }
}
@media (min-width: 992px) {
  .header .navbar-actions .navbar-actions-shrink {
    max-height: none;
  }
  .header-shrink.ark-header .navbar-actions .navbar-actions-shrink {
    max-height: none;
  }
}
@media (max-width: 991px) {
  .header-fullscreen .header-fullscreen-col {
    width: calc(100% - 60px);
  }
  .header-fullscreen .header-fullscreen-col.header-fullscreen-nav-actions-left {
    width: 30px;
  }
}
.ark-header .topbar-toggle-trigger {
  padding: 0;
}
header .navbar-logo .navbar-logo-wrap {
  transition-property: width, height, opacity, padding, margin-top, margin-bottom;
}
.ark-header .navbar-logo .navbar-logo-wrap {
  line-height: 1px;
}
@media (min-width: 992px) {
  .wrapper > .wrapper-top-space {
    height: 90px;
  }
  .ark-header .navbar-logo .navbar-logo-wrap {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
  .header-shrink.ark-header .navbar-logo .navbar-logo-wrap {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
  .ark-header .navbar-nav .nav-item {
    line-height: 90px;
    max-height: 90px;
    overflow: visible;
  }
  .ark-header .navbar-nav .nav-item ul {
    line-height: 1.42857143;
  }
  header .navbar-logo-wrap img {
    height: 45px !important;
  }
  header.header-shrink .navbar-logo-wrap img {
    height: 45px !important;
  }
}
.ark-header .navbar-actions .navbar-actions-shrink {
  line-height: 89px;
}
@media (min-width: 992px) {
  .header-shrink.ark-header .navbar-actions .navbar-actions-shrink {
    line-height: 69px;
  }
  .ark-header.header-no-pills .navbar-nav .nav-item-child {
    line-height: 90px;
  }
  .ark-header.header-no-pills.header-shrink .navbar-nav .nav-item-child {
    line-height: 70px;
  }
  .ark-header.header-pills .navbar-nav .nav-item-child {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .ark-header.header-pills.header-shrink .navbar-nav .nav-item-child {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .header-fullscreen .header-fullscreen-nav-actions-left,
  .header-fullscreen .header-fullscreen-nav-actions-right {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-fullscreen .header-fullscreen-nav-actions-left,
  .header-fullscreen .header-fullscreen-nav-actions-right {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .header-fullscreen .header-fullscreen-nav-actions-left,
  .header-fullscreen .header-fullscreen-nav-actions-right {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .header-shrink.header-fullscreen .header-fullscreen-nav-actions-left,
  .header-shrink.header-fullscreen .header-fullscreen-nav-actions-right {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.ark-header.auto-hiding-navbar.nav-up {
  top: -80px;
}
.ark-header.auto-hiding-navbar.nav-up.header-has-topbar {
  top: -100%;
}
.search-on-header-field .search-on-header-input {
  height: 88px;
}
.header-shrink .search-on-header-field .search-on-header-input {
  height: 68px;
}
@media (max-width: 767px) {
  .search-on-header-field .search-on-header-input {
    height: 90px;
  }
  .ark-header .topbar-toggle-trigger {
    height: 20px;
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .search-on-header-field .search-on-header-input {
    height: 90px;
  }
  .ark-header .topbar-toggle-trigger {
    height: 20px;
    margin-top: 35px;
    margin-bottom: 35px;
  }
}

/* --- HORIZONTAL HEADER RESPONSIVE --- */
@media (min-width: 768px) and (max-width: 991px) {
  .ark-header .navbar-toggle {
    margin-top: 32.5px;
    margin-bottom: 32.5px;
  }
  .ark-header .navbar-actions .navbar-actions-shrink {
    line-height: 90px;
  }
  header .navbar-logo-wrap img {
    height: 45px !important;
  }
  .wrapper-top-space-xs {
    height: 90px;
  }
  .ark-header .navbar-logo .navbar-logo-wrap {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
}
@media (max-width: 767px) {
  .ark-header .navbar-toggle {
    margin-top: 32.5px;
    margin-bottom: 32.5px;
  }
  .ark-header .navbar-actions .navbar-actions-shrink {
    line-height: 90px;
  }
  header .navbar-logo-wrap img {
    height: 45px !important;
  }
  .wrapper-top-space-xs {
    height: 90px;
  }
  .ark-header .navbar-logo .navbar-logo-wrap {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
}

/* --- FULLSCREEN & VERTICAL RESPONSIVES --- */
.ark-header.header-fullscreen .navbar-logo {
  min-height: 1px !important;
}
.ark-header.header-fullscreen .navbar-logo-wrap {
  width: 100% !important;
}
@media (max-width: 991px) {
  .ark-header.header-fullscreen .header-fullscreen-nav-actions-right {
    width: 30px;
  }
  .header-vertical .navbar-toggle,
  .header-section-scroll .navbar-toggle {
    margin-top: 32.5px;
    margin-bottom: 32.5px;
  }
  header.ark-header-vertical .navbar-logo .navbar-logo-wrap {
    padding-top: 22.5px !important;
    padding-bottom: 22.5px !important;
  }
  header.ark-header-vertical .shopping-cart-wrapper {
    margin-top: -55px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-vertical .navbar-toggle,
  .header-section-scroll .navbar-toggle {
    margin-top: 32.5px;
    margin-bottom: 32.5px;
  }
  header.ark-header-vertical .navbar-logo .navbar-logo-wrap {
    padding-top: 22.5px !important;
    padding-bottom: 22.5px !important;
  }
  header.ark-header-vertical .shopping-cart-wrapper {
    margin-top: -55px;
  }
}

/* --- VERTICAL TEMPLATES --- */
@media (max-width: 767px) {
  .ark-header .ffb-header-template-item-vcenter {
    height: 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ark-header .ffb-header-template-item-vcenter {
    height: 90px;
  }
}
@media (min-width: 992px) {
  .ark-header .ffb-header-template-item-vcenter {
    height: 90px;
  }
  .ark-header.header-shrink .ffb-header-template-item-vcenter {
    height: 70px;
  }
}

/* --- LOGO JUMP OUT & FIRST LEVEL MENU --- */
.ffb-id-navigation-header .ffb-header-design {
  margin-bottom: 20px;
}
header.ark-header-vertical .navbar-logo-wrap {
  padding: 0px !important;
  margin: 0 10px 0 10px;
}
.wrapper > .wrapper-top-space {
  height: 0 !important;
}

.ffb-id-navigation-header .ffb-ark-first-level-menu {
  border-radius: var(--border-radius-premium) !important;
  text-transform: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}
.ffb-id-navigation-header .ffb-ark-first-level-menu,
.ffb-id-navigation-header .ffb-ark-first-level-menu:before,
.ffb-id-navigation-header .ffb-ark-first-level-menu:after,
.ffb-id-navigation-header .ffb-ark-first-level-menu *,
.ffb-id-navigation-header .ffb-ark-first-level-menu *:before,
.ffb-id-navigation-header .ffb-ark-first-level-menu *:after {
  color: var(--color-primary) !important;
  text-transform: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}
.ffb-id-navigation-header .ffb-ark-first-level-menu:hover,
.ffb-id-navigation-header .ffb-ark-first-level-menu:hover:before,
.ffb-id-navigation-header .ffb-ark-first-level-menu:hover:after,
.ffb-id-navigation-header .ffb-ark-first-level-menu:hover *,
.ffb-id-navigation-header .ffb-ark-first-level-menu:hover *:before,
.ffb-id-navigation-header .ffb-ark-first-level-menu:hover *:after {
  color: var(--color-white) !important;
}

@media (min-width: 992px) {
  .header-vertical {
    width: 258px;
  }
  .header-section-scroll-container {
    margin-left: 258px;
  }
  .header-section-scroll-container .fg-force-fullwidth {
    padding-left: 258px;
  }
  .header-vertical-container .fg-force-fullwidth {
    padding-left: 258px;
  }
  .ark-boxed__body-wrapper {
    padding-left: 258px;
  }
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.current-menu-ancestor a.ffb-ark-first-level-menu,
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.current-menu-item a.ffb-ark-first-level-menu,
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.active a.ffb-ark-first-level-menu {
    color: var(--color-primary);
  }
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li a.ffb-ark-first-level-menu:hover {
    color: var(--color-white) !important;
    background-color: var(--color-accent) !important;
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-ancestor > .ffb-ark-sub-level-menu,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-item > .ffb-ark-sub-level-menu,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .active > .ffb-ark-sub-level-menu {
    color: var(--color-primary);
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-ancestor > .ffb-ark-sub-level-menu:after,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-item > .ffb-ark-sub-level-menu:after,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .active > .ffb-ark-sub-level-menu:after {
    color: var(--color-primary);
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .ffb-ark-sub-level-menu:hover {
    color: var(--color-white) !important;
    background-color: var(--color-primary) !important;
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .ffb-ark-sub-level-menu:hover:after {
    color: var(--color-white) !important;
  }
}

@media (max-width: 991px) {
  .ffb-id-navigation-header .ark-header-vertical {
    box-shadow: 0 0 15px rgba(0, 0, 50, 0.09);
  }
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.current-menu-ancestor a.ffb-ark-first-level-menu,
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.current-menu-item a.ffb-ark-first-level-menu,
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.active a.ffb-ark-first-level-menu {
    color: var(--color-primary);
  }
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li a.ffb-ark-first-level-menu:hover {
    color: var(--color-primary) !important;
    background-color: #f8f2e4 !important;
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-ancestor > .ffb-ark-sub-level-menu,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-item > .ffb-ark-sub-level-menu,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .active > .ffb-ark-sub-level-menu {
    color: var(--color-primary);
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-ancestor > .ffb-ark-sub-level-menu:after,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-item > .ffb-ark-sub-level-menu:after,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .active > .ffb-ark-sub-level-menu:after {
    color: var(--color-primary);
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .ffb-ark-sub-level-menu:hover {
    color: var(--color-white) !important;
    background-color: var(--color-primary) !important;
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .ffb-ark-sub-level-menu:hover:after {
    color: var(--color-white) !important;
  }
}

/* --- HERO BLOCK HEIGHTS & KEN BURNS WRAP --- */
.ffb-id-96n8d1si {
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 767px) {
  .ffb-id-96n8d1si.fg-temp-height {
    height: 100vh;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ffb-id-96n8d1si.fg-temp-height {
    height: 100vh;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ffb-id-96n8d1si.fg-temp-height {
    height: 100vh;
  }
}
@media (min-width: 1200px) {
  .ffb-id-96n8d1si.fg-temp-height {
    height: 100vh;
  }
}
.ffb-id-96n8d1sj {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  text-align: center !important;
}
.ffb-id-96n8d1sj,
.ffb-id-96n8d1sj:before,
.ffb-id-96n8d1sj:after,
.ffb-id-96n8d1sj:hover,
.ffb-id-96n8d1sj:focus,
.ffb-id-96n8d1sj *,
.ffb-id-96n8d1sj *:before,
.ffb-id-96n8d1sj *:after,
.ffb-id-96n8d1sj *:hover,
.ffb-id-96n8d1sj *:focus {
  text-align: left !important;
}
.ffb-id-96n8d1sl {
  padding-right: 0px;
  padding-left: 0px;
}

.th-hp-kenburns-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.th-hp-kenburns {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.th-hp-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1.02);
  will-change: transform, opacity;
  backface-visibility: hidden;
  z-index: 0;
}
.th-hp-frame.is-active {
  opacity: 1;
  z-index: 1;
}
.th-hp-frame.is-zoom {
  animation: th-hp-zoom-in 6s linear forwards;
}
@keyframes th-hp-zoom-in {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.15);
  }
}
.th-hp-kenburns-empty {
  display: none;
}
@media (max-width: 991px) and (min-width: 768px) {
  section#home,
  .ffb-id-96n8d1si {
    height: auto !important;
    min-height: auto !important;
  }
  .th-hp-kenburns-wrap {
    height: auto !important;
  }
  .th-hp-kenburns {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 767px) {
  section#home,
  .ffb-id-96n8d1si {
    height: auto !important;
    min-height: auto !important;
  }
  .th-hp-kenburns-wrap {
    height: auto !important;
  }
  .th-hp-kenburns {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

/* --- LIGHTBOX SYSTEMS --- */
.ffb-id-93a77p1o .ff-lightbox-icon {
  background-color: var(--color-white) !important;
}
.ffb-id-93a77p1o .ff-lightbox-icon:hover {
  background-color: var(--color-primary) !important;
}
.ffb-id-93a77p1o {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.ffb-id-93a77p1n,
.ffb-id-93a77p1n:before,
.ffb-id-93a77p1n:after,
.ffb-id-93a77p1n *,
.ffb-id-93a77p1n *:before,
.ffb-id-93a77p1n *:after {
  color: var(--color-primary) !important;
}
.ffb-id-93a77p1n {
  font-size: 32px !important;
  font-weight: 900 !important;
}
.ffb-id-93a77p1n,
.ffb-id-93a77p1n:before,
.ffb-id-93a77p1n:after,
.ffb-id-93a77p1n:hover,
.ffb-id-93a77p1n:focus,
.ffb-id-93a77p1n *,
.ffb-id-93a77p1n *:before,
.ffb-id-93a77p1n *:after,
.ffb-id-93a77p1n *:hover,
.ffb-id-93a77p1n *:focus {
  font-size: 32px !important;
  font-weight: 900 !important;
}
.ffb-id-92vhim9m .ff-lightbox-icon {
  background-color: var(--color-white) !important;
}
.ffb-id-92vhim9m .ff-lightbox-icon:hover {
  background-color: var(--color-primary) !important;
}
.ffb-id-92vhim9m {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.ffb-id-8nt7l290,
.ffb-id-8nt7l290:before,
.ffb-id-8nt7l290:after,
.ffb-id-8nt7l290 *,
.ffb-id-8nt7l290 *:before,
.ffb-id-8nt7l290 *:after {
  color: var(--color-primary) !important;
}
.ffb-id-8nt7l290 {
  font-size: 32px !important;
  font-weight: 900 !important;
}
.ffb-id-8nt7l290,
.ffb-id-8nt7l290:before,
.ffb-id-8nt7l290:after,
.ffb-id-8nt7l290:hover,
.ffb-id-8nt7l290:focus,
.ffb-id-8nt7l290 *,
.ffb-id-8nt7l290 *:before,
.ffb-id-8nt7l290 *:after,
.ffb-id-8nt7l290 *:hover,
.ffb-id-8nt7l290 *:focus {
  font-size: 32px !important;
  font-weight: 900 !important;
}
.ffb-id-92vijl5d .ff-lightbox-icon {
  background-color: var(--color-white) !important;
}
.ffb-id-92vijl5d .ff-lightbox-icon:hover {
  background-color: var(--color-primary) !important;
}
.ffb-id-92vijl5d {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.ffb-id-92vijl5c,
.ffb-id-92vijl5c:before,
.ffb-id-92vijl5c:after,
.ffb-id-92vijl5c *,
.ffb-id-92vijl5c *:before,
.ffb-id-92vijl5c *:after {
  color: var(--color-primary) !important;
}
.ffb-id-92vijl5c {
  font-size: 32px !important;
  font-weight: 900 !important;
}
.ffb-id-92vijl5c,
.ffb-id-92vijl5c:before,
.ffb-id-92vijl5c:after,
.ffb-id-92vijl5c:hover,
.ffb-id-92vijl5c:focus,
.ffb-id-92vijl5c *,
.ffb-id-92vijl5c *:before,
.ffb-id-92vijl5c *:after,
.ffb-id-92vijl5c *:hover,
.ffb-id-92vijl5c *:focus {
  font-size: 32px !important;
  font-weight: 900 !important;
}

/* --- EXTRA SECTIONS --- */
.panel.panel-default {
  margin: 10px 0;
}
.ffb-id-8nt7iopm,
.ffb-id-8nt7iopm:before,
.ffb-id-8nt7iopm:after,
.ffb-id-8nt7iopm *,
.ffb-id-8nt7iopm *:before,
.ffb-id-8nt7iopm *:after {
  color: var(--color-primary) !important;
}
.ffb-id-8nt7iopm {
  font-size: 32px !important;
  font-weight: 900 !important;
}
.ffb-id-8nt7iopm,
.ffb-id-8nt7iopm:before,
.ffb-id-8nt7iopm:after,
.ffb-id-8nt7iopm:hover,
.ffb-id-8nt7iopm:focus,
.ffb-id-8nt7iopm *,
.ffb-id-8nt7iopm *:before,
.ffb-id-8nt7iopm *:after,
.ffb-id-8nt7iopm *:hover,
.ffb-id-8nt7iopm *:focus {
  font-size: 32px !important;
  font-weight: 900 !important;
}

/* --- LOKALIZACJA PREMIUM (GRID FIX) --- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.loc-header {
  text-align: center;
  margin-bottom: 50px;
}
.loc-header h2 {
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}
.loc-header p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto;
}
.loc-header strong {
  font-weight: 500;
  color: var(--color-primary);
}
.loc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.loc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.loc-item:last-child {
  border-bottom: none;
}
.loc-place {
  font-weight: 500;
  color: var(--color-text-main);
}
.loc-distance-info {
  text-align: right;
}
.loc-km {
  display: block;
  font-weight: 500;
  color: var(--color-primary);
  font-size: 15px;
}
.loc-time {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
}
@media (max-width: 850px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }
}

.ffb-id-8nt7j4vn,
.ffb-id-8nt7j4vn:before,
.ffb-id-8nt7j4vn:after,
.ffb-id-8nt7j4vn *,
.ffb-id-8nt7j4vn *:before,
.ffb-id-8nt7j4vn *:after {
  color: var(--color-primary) !important;
}
.ffb-id-8nt7j4vn {
  font-size: 32px !important;
  font-weight: 900 !important;
}
.ffb-id-8nt7j4vn,
.ffb-id-8nt7j4vn:before,
.ffb-id-8nt7j4vn:after,
.ffb-id-8nt7j4vn:hover,
.ffb-id-8nt7j4vn:focus,
.ffb-id-8nt7j4vn *,
.ffb-id-8nt7j4vn *:before,
.ffb-id-8nt7j4vn *:after,
.ffb-id-8nt7j4vn *:hover,
.ffb-id-8nt7j4vn *:focus {
  font-size: 32px !important;
  font-weight: 900 !important;
}

/* --- PROPERTY TABLE ADDITIONS --- */
.status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 17px;
}
.status.available {
  background-color: #E8F5E9;
  color: #2E7D32;
  font-weight: 500;
}
.status.reserved {
  background-color: #fff3e0;
  color: #b86e00;
  font-weight: 500;
}
.status.sold {
  background-color: #e3f0fa;
  color: #1a5f8a;
  font-weight: 500;
}
.pdf-link {
  font-weight: 600;
  text-decoration: none;
}
.pdf-link:hover {
  text-decoration: underline;
}
.ff-font-awesome4.icon-file-pdf-o:before {
  content: '\f1c1';
  margin-left: 6px;
}
.ff-font-awesome4[class*=icon]:before {
  font-family: 'ff-font-awesome' !important;
}

.ffb-id-8nt7i07a,
.ffb-id-8nt7i07a:before,
.ffb-id-8nt7i07a:after,
.ffb-id-8nt7i07a *,
.ffb-id-8nt7i07a *:before,
.ffb-id-8nt7i07a *:after {
  color: var(--color-primary) !important;
}
.ffb-id-8nt7i07a {
  font-size: 32px !important;
  font-weight: 900 !important;
}
.ffb-id-8nt7i07a,
.ffb-id-8nt7i07a:before,
.ffb-id-8nt7i07a:after,
.ffb-id-8nt7i07a:hover,
.ffb-id-8nt7i07a:focus,
.ffb-id-8nt7i07a *,
.ffb-id-8nt7i07a *:before,
.ffb-id-8nt7i07a *:after,
.ffb-id-8nt7i07a *:hover,
.ffb-id-8nt7i07a *:focus {
  font-size: 32px !important;
  font-weight: 900 !important;
}

/* --- RZUTY (FLOOR PLANS) SYSTEM V2 --- */
.plans-custom-section {
  background-color: #f9f8f6;
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
}

/* Wektorowe tło roślinne w prawym dolnym rogu */
.plans-bg-leaves {
  position: absolute;
  right: -20px;
  bottom: -20px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
  transform: rotate(-10deg);
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.plans-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px auto;
}

.plans-badge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.plans-badge-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.plans-badge-text-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.plans-badge-line {
  width: 24px;
  height: 1px;
  background-color: rgba(44, 87, 52, 0.2);
}

.plans-badge-txt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #56773f;
  text-transform: uppercase;
}

.plans-main-title {
  color: #2c5734;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.plans-main-title .plans-accent {
  color: #56773f;
  font-weight: 800;
}

.plans-subtitle {
  color: #666666;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto;
}

/* Układ dwukolumnowy z pionową linią podziału pośrodku */
.plans-grid-v3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  margin-bottom: 40px;
}

.plans-grid-v3::after {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 1px;
  background: rgba(44, 87, 52, 0.1);
  transform: translateX(-50%);
}

.plans-floor-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Układ poziomy w górnej części kolumny: metraż z lewej, rzut z prawej */
.plans-floor-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.plans-floor-info-side {
  flex-grow: 1;
}

.plans-floor-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2c5734;
  letter-spacing: 0.05em;
}

.plans-floor-label-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #56773f;
}

.plans-floor-area-big {
  font-size: 56px;
  font-weight: 800;
  color: #2c5734;
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 0.9;
  margin: 12px 0 16px 0;
  letter-spacing: -0.03em;
}

.plans-area-unit {
  font-size: 24px;
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
}

.plans-floor-area-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.4;
  font-weight: 400;
}

.plans-area-floor-hint {
  color: #888888;
  display: block;
  margin-top: 4px;
}

.plans-floor-visual-side {
  flex-shrink: 0;
  width: 260px;
  text-align: center;
  cursor: pointer;
}

.plans-image-container-v3 {
  border-radius: 16px;
  background: transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans-image-container-v3 img {
  max-width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.plans-floor-visual-side:hover .plans-image-container-v3 img {
  transform: scale(1.05);
}

.plans-image-overlay-v3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 87, 52, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans-floor-visual-side:hover .plans-image-overlay-v3 {
  opacity: 1;
}

.plans-zoom-circle-v3 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #2c5734;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(44, 87, 52, 0.15);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plans-floor-visual-side:hover .plans-zoom-circle-v3 {
  transform: scale(1);
}

.plans-floor-visual-side:hover .plans-image-container-v3 {
  transform: translateY(-4px);
}

.plans-zoom-hint-bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #888888;
  margin-top: 12px;
  font-weight: 500;
  transition: color 0.3s;
}

.plans-floor-visual-side:hover .plans-zoom-hint-bottom {
  color: #2c5734;
}

.plans-zoom-hint-bottom svg {
  color: #56773f;
}

/* Dolna część: lista pomieszczeń */
.plans-floor-rooms-bottom {
  width: 100%;
}

.plans-room-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.plans-room-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(44, 87, 52, 0.08);
  transition: background-color 0.3s, padding-left 0.3s, border-radius 0.3s;
}

.plans-room-item:last-child {
  border-bottom: none;
}

.plans-room-item:hover {
  background-color: rgba(44, 87, 52, 0.02);
  padding-left: 16px;
  border-radius: 8px;
}

.plans-room-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.plans-room-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f3ed;
  color: #56773f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid rgba(44, 87, 52, 0.05);
  transition: all 0.3s ease;
}

.plans-room-item:hover .plans-room-num {
  background: #2c5734;
  color: #ffffff;
  border-color: #2c5734;
  transform: scale(1.05);
}

.plans-room-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.plans-room-name {
  font-weight: 700;
  font-size: 15px;
  color: #2c3e50;
  transition: color 0.3s;
}

.plans-room-item:hover .plans-room-name {
  color: #2c5734;
}

.plans-room-desc {
  font-size: 13px;
  color: #888888;
  line-height: 1.3;
}

.plans-room-area {
  font-weight: 700;
  white-space: nowrap;
  margin-left: 12px;
  color: #2c5734;
  text-align: right;
  font-size: 15px;
  transition: transform 0.3s;
}

.plans-room-item:hover .plans-room-area {
  transform: scale(1.03);
}

.plans-hint-inline {
  font-size: 12px;
  color: #888888;
  font-weight: 400;
  margin-left: 4px;
}

/* Dolny baner funkcjonalności */
.plans-footer-banner {
  margin-top: 80px;
  background: #edf0e8;
  border-radius: 100px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(44, 87, 52, 0.05);
  box-shadow: 0 10px 30px rgba(44, 87, 52, 0.03);
  position: relative;
  z-index: 3;
}

.plans-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.plans-banner-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(117, 158, 88, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c5734;
  flex-shrink: 0;
}

.plans-banner-text-block h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
  color: #2c5734;
}

.plans-banner-text-block p {
  margin: 0;
  font-size: 14px;
  color: #666666;
  line-height: 1.4;
}

.plans-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #2c5734;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(44, 87, 52, 0.2);
  white-space: nowrap;
}

.plans-banner-btn:hover {
  background: #203f26;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 87, 52, 0.3);
  color: #ffffff !important;
}

.plans-btn-icon-left, .plans-btn-icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lightbox V2 */
.lightbox-v2 {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(15, 26, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.4s ease;
  align-items: center;
  justify-content: center;
}

.lightbox-v2[style*="display: block"] {
  display: flex !important;
}

.lightbox-content-v2 {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-v2[style*="display: block"] .lightbox-content-v2 {
  transform: scale(1);
}

.close-lightbox-v2 {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s, transform 0.3s, color 0.3s;
  line-height: 1;
}

.close-lightbox-v2:hover {
  background: #ffffff;
  color: #2c5734;
  transform: rotate(90deg);
}

@media (max-width: 1199px) {
  .plans-grid-v3 {
    gap: 48px;
  }
  .plans-footer-banner {
    border-radius: 24px;
    padding: 24px;
  }
}

@media (max-width: 991px) {
  .plans-custom-section {
    padding: 70px 0;
  }
  .plans-grid-v3 {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .plans-grid-v3::after {
    display: none;
  }
  .plans-floor-row-top {
    justify-content: flex-start;
    gap: 40px;
  }
  .plans-footer-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 24px;
    padding: 24px;
  }
  .plans-banner-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .plans-banner-right {
    width: 100%;
  }
  .plans-banner-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .plans-floor-row-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  /* Nagłówek piętra (PARTER / PODDASZE + metraż) wyśrodkowany na mobile */
  .plans-floor-info-side {
    width: 100%;
    text-align: center;
  }
  .plans-floor-label {
    justify-content: center;
  }
  .plans-floor-visual-side {
    width: 100%;
    max-width: 280px;
    align-self: center;
  }
  .plans-room-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* m² pod nazwą pomieszczenia, wyrównane do lewej równo z tekstem
     (28px numer + 16px odstęp) */
  .plans-room-area {
    align-self: flex-start;
    margin-left: 44px;
    text-align: left;
  }
  .plans-badge-text-line {
    gap: 8px;
  }
  .plans-badge-line {
    width: 16px;
  }
}

/* --- VIDEO SECTION & FEATURES --- */
.content-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: inherit;
}
.content-section h3 {
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 25px;
  text-align: center;
}
.content-section p.lead {
  font-size: 18px;
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}
.feature-item {
  margin-bottom: 45px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.feature-item .number {
  font-size: 64px;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.3;
}
.feature-content h4 {
  font-size: 22px;
  color: var(--color-primary);
  margin: 0 0 10px 0;
  font-weight: 700;
}
.feature-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}
.db-section-video {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-premium);
  overflow: hidden;
  margin: 32px 0 48px;
  background: #0f1a10;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
}
.db-section-video video {
  width: 100%;
  height: auto;
  display: block;
}
.db-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.db-feature {
  background: var(--color-white);
  border-radius: var(--border-radius-premium);
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--color-accent);
}
.db-feature-num {
  font-size: 52px;
  font-weight: 900;
  color: #e4eedf;
  line-height: 1;
  margin-bottom: 14px;
  font-family: var(--font-main);
  letter-spacing: -0.02em;
}
.db-feature h4 {
  font-size: 17px;
  font-weight: 700;
  color: #2a5732;
  margin: 0 0 10px;
  line-height: 1.35;
}
.db-feature p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}
@media (max-width: 900px) {
  .db-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .db-section-video {
    border-radius: var(--border-radius-small);
  }
}

/* --- BENEFIT SECTION --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.benefit-card {
  background: var(--color-white);
  padding: 35px;
  border-radius: var(--border-radius-premium);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid var(--color-accent);
  transition: transform 0.3s ease;
  text-align: center;
}
.benefit-card:hover {
  transform: translateY(-10px);
}
.benefit-card h4 {
  color: var(--color-primary);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}
.benefit-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.ffb-id-8nt8ujui,
.ffb-id-8nt8ujui:before,
.ffb-id-8nt8ujui:after,
.ffb-id-8nt8ujui *,
.ffb-id-8nt8ujui *:before,
.ffb-id-8nt8ujui *:after {
  color: #000000 !important;
}
.ffb-id-8nt8ujui {
  font-size: 24px !important;
}
.ffb-id-8nt8ujui,
.ffb-id-8nt8ujui:before,
.ffb-id-8nt8ujui:after,
.ffb-id-8nt8ujui:hover,
.ffb-id-8nt8ujui:focus,
.ffb-id-8nt8ujui *,
.ffb-id-8nt8ujui *:before,
.ffb-id-8nt8ujui *:after,
.ffb-id-8nt8ujui *:hover,
.ffb-id-8nt8ujui *:focus {
  font-size: 24px !important;
}

/* --- ACCORDION SYSTEM FOR ALL MODULES (1 to 4) --- */
.ffb-id-8ntabual .ffb-accordion-1 .panel-title > a,
.ffb-id-8ntabual .ffb-accordion-2 .panel-title > a,
.ffb-id-8ntabual .ffb-accordion-3 .panel-title > a,
.ffb-id-8ntabual .ffb-accordion-4 .panel-title > a {
  color: #34343c;
  background-color: var(--color-white);
}
.ffb-id-8ntabual .ffb-accordion-1 .panel-title > a:after,
.ffb-id-8ntabual .ffb-accordion-2 .panel-title > a:after,
.ffb-id-8ntabual .ffb-accordion-3 .panel-title > a:after,
.ffb-id-8ntabual .ffb-accordion-4 .panel-title > a:after {
  color: #34343c;
}
.ffb-id-8ntabual .ffb-accordion-1 .panel-title > a:hover,
.ffb-id-8ntabual .ffb-accordion-2 .panel-title > a:hover,
.ffb-id-8ntabual .ffb-accordion-3 .panel-title > a:hover,
.ffb-id-8ntabual .ffb-accordion-4 .panel-title > a:hover {
  color: var(--color-primary);
  background-color: var(--color-white);
}
.ffb-id-8ntabual .ffb-accordion-1 .panel-title > a[aria-expanded="true"],
.ffb-id-8ntabual .ffb-accordion-2 .panel-title > a[aria-expanded="true"],
.ffb-id-8ntabual .ffb-accordion-3 .panel-title > a[aria-expanded="true"],
.ffb-id-8ntabual .ffb-accordion-4 .panel-title > a[aria-expanded="true"] {
  color: var(--color-primary);
  background-color: var(--color-white);
}
.ffb-id-8ntabual .ffb-accordion-1 .panel-title > a:hover:after,
.ffb-id-8ntabual .ffb-accordion-2 .panel-title > a:hover:after,
.ffb-id-8ntabual .ffb-accordion-3 .panel-title > a:hover:after,
.ffb-id-8ntabual .ffb-accordion-4 .panel-title > a:hover:after {
  color: var(--color-primary);
}
.ffb-id-8ntabual .ffb-accordion-1 .panel-title > a[aria-expanded="true"]:after,
.ffb-id-8ntabual .ffb-accordion-2 .panel-title > a[aria-expanded="true"]:after,
.ffb-id-8ntabual .ffb-accordion-3 .panel-title > a[aria-expanded="true"]:after,
.ffb-id-8ntabual .ffb-accordion-4 .panel-title > a[aria-expanded="true"]:after {
  color: var(--color-primary);
}
.ffb-id-8ntabual .ffb-accordion-1 .panel-body,
.ffb-id-8ntabual .ffb-accordion-2 .panel-body,
.ffb-id-8ntabual .ffb-accordion-3 .panel-body,
.ffb-id-8ntabual .ffb-accordion-4 .panel-body {
  color: #5d5d5d;
  background-color: var(--color-bg-light);
}
.ffb-id-8ntabual .ffb-accordion-1 .panel-body a,
.ffb-id-8ntabual .ffb-accordion-2 .panel-body a,
.ffb-id-8ntabual .ffb-accordion-3 .panel-body a,
.ffb-id-8ntabual .ffb-accordion-4 .panel-body a {
  color: var(--color-primary);
}
.ffb-id-8ntabual .ffb-accordion-1 .panel-body a:hover,
.ffb-id-8ntabual .ffb-accordion-2 .panel-body a:hover,
.ffb-id-8ntabual .ffb-accordion-3 .panel-body a:hover,
.ffb-id-8ntabual .ffb-accordion-4 .panel-body a:hover {
  color: var(--color-primary);
}
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title,
.ffb-id-8ntabual .ffb-accordion-2 .ffb-title,
.ffb-id-8ntabual .ffb-accordion-3 .ffb-title,
.ffb-id-8ntabual .ffb-accordion-4 .ffb-title {
  font-size: 24px !important;
  font-weight: 500 !important;
  color: var(--color-white) !important;
}
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title,
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title:before,
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title:after,
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title:hover,
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title:focus,
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title *,
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title *:before,
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title *:after,
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title *:hover,
.ffb-id-8ntabual .ffb-accordion-1 .ffb-title *:focus {
  font-size: 24px !important;
  font-weight: 500 !important;
  color: var(--color-white) !important;
}

/* --- HEADER, NAVIGATION & HERO (REFRACTORED FROM INDEX.PHP) --- */
.ffb-id-9alc2uoi {
  margin-top: 0;
}
@media (min-width: 992px) {
  .ffb-id-9alc2uoi {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  header .menu-container,
  header .template-beginning-of-header,
  header .ffb-id-9alc2uoi,
  header .ffb-id-9alc2uoi > .fg-container,
  header .ffb-id-9alc2uoi .fg-row {
    position: static !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
    float: none !important;
    clear: both !important;
  }
  
  header .navbar > .container {
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  header .menu-container {
    position: relative !important;
    background-color: var(--color-white) !important;
    width: 100% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }
  
  header .navbar-logo.ffb-logo {
    display: none !important;
  }
  
  header .ffb-id-9alc3ic0 {
    background-color: var(--color-bg-light) !important;
    border-bottom: 1px solid var(--color-border) !important;
    padding: 10px 10px !important;
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  header .ffb-id-9alc3ic0 .fg-vcenter {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: clamp(6px, 2vw, 10px) clamp(15px, 5vw, 25px) !important;
    width: 100% !important;
  }
  
  header .ffb-id-9alc3ic0 .buttons-el-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }
  
  header .ffb-id-9alc3ic0 a.ffb-btn {
    padding: 0 !important;
    border: none !important;
    background: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
  }
  
  header .ffb-id-9alc3ic0 .btn-text {
    font-size: clamp(12.5px, 3.5vw, 14.5px) !important;
    font-weight: 500 !important;
    color: var(--color-primary-dark) !important;
    font-family: inherit !important;
    letter-spacing: 0.2px !important;
  }
  
  header .ffb-id-9alc3ic0 .btn-base-element-icon {
    font-size: clamp(13px, 3.5vw, 15px) !important;
    margin-right: 6px !important;
    color: var(--color-primary) !important;
    opacity: 0.9 !important;
  }
  
  header .ffb-id-9alc2uoj {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center;
    padding: clamp(15px, 4vw, 18px) clamp(15px, 4vw, 20px) !important;
    padding-right: clamp(75px, 15vw, 80px) !important;
    margin: 0 !important;
    background: var(--color-white) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: 80px !important;
  }
  
  header a.ffb-id-96rip6qa.responsive-image-wrapper {
    display: block !important;
    max-width: clamp(150px, 40vw, 210px) !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  header .ffb-id-9alc2uoj img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
  }
  
  header .navbar-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    bottom: clamp(15px, 4vw, 18px) !important;
    right: 15px !important;
    top: auto !important;
    left: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 999 !important;
    background: var(--color-white) !important;
    border: 1px solid #e0e5e2 !important;
    border-radius: 6px !important;
    height: 42px !important;
    width: 48px !important;
    box-sizing: border-box !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.2s ease !important;
  }
  
  header .navbar-toggle:active {
    background: #f1f1f1 !important;
  }
  
  header .navbar-toggle .toggle-icon {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background-color: var(--color-primary) !important;
    position: relative !important;
    border-radius: 2px !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  header .navbar-toggle .toggle-icon::before,
  header .navbar-toggle .toggle-icon::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    width: 22px !important;
    height: 2px !important;
    background-color: var(--color-primary) !important;
    border-radius: 2px !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  header .navbar-toggle .toggle-icon::before {
    top: -8px !important;
    bottom: auto !important;
  }
  
  header .navbar-toggle .toggle-icon::after {
    top: 8px !important;
    bottom: auto !important;
  }
  
  header .navbar-toggle .icon-bar {
    display: none !important;
  }
  
  header .navbar-toggle .sr-only {
    display: none !important;
  }
}

.ffb-id-96rip6qa {
  padding-right: 10px;
  padding-left: 10px;
}

.ffb-id-9alc3ic2 .ffb-button4-1.ffb-block-button-2-0.btn-base-brd-slide {
  color: var(--color-primary);
  border-color: transparent;
}
.ffb-id-9alc3ic2 .ffb-button4-1.ffb-block-button-2-0.btn-base-brd-slide:hover {
  color: var(--color-accent);
  border-color: transparent;
}
.ffb-id-9alc3ic2 .ffb-button4-1.ffb-block-button-2-0.btn-base-brd-slide i {
  color: var(--color-accent);
}
.ffb-id-9alc3ic2 {
  font-weight: 400 !important;
}

.ffb-id-9alc3ic1 .ffb-button4-1.ffb-block-button-1-0.btn-base-brd-slide {
  color: var(--color-primary);
  border-color: transparent;
}
.ffb-id-9alc3ic1 .ffb-button4-1.ffb-block-button-1-0.btn-base-brd-slide:hover {
  color: var(--color-accent);
  border-color: transparent;
}
.ffb-id-9alc3ic1 .ffb-button4-1.ffb-block-button-1-0.btn-base-brd-slide i {
  color: var(--color-accent);
}
.ffb-id-9alc3ic1 {
  font-weight: 600 !important;
}
@media (min-width: 992px) {
  .ffb-id-9alc3ic1 {
    font-size: 24px !important;
  }
}

.kontakt-1 {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kontakt-1 a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  background: #fdfdfd;
}
.kontakt-1 a.k1-phone {
  background: #f3f3f3;
}
.kontakt-1 a.k1-email {
  background: #f3f3f3;
  justify-content: center;
}
.kontakt-1 a:hover {
  background: #e9e9e9;
  color: var(--color-primary);
}
.kontakt-1 .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  margin-right: 15px;
  border-radius: 50%;
}
.kontakt-1 a.k1-phone .k1-text {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
}
.kontakt-1 a.k1-email .k1-text {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.kontakt-1 a.k1-email:hover .k1-text {
  color: var(--color-primary);
}

/* RESETS & DYNAMIC OVERWRITES */
header .navbar-logo,
header.header-shrink .navbar-logo {
  line-height: 0 !important;
}
header .navbar-logo-wrap img {
  max-height: none !important;
}
header .navbar-logo .navbar-logo-wrap {
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.ark-header .topbar-toggle-trigger {
  padding: 0;
}
header .navbar-logo .navbar-logo-wrap {
  transition-property: width, height, opacity, padding, margin-top, margin-bottom;
}
.ark-header .navbar-logo .navbar-logo-wrap {
  line-height: 1px;
}
.ark-header.auto-hiding-navbar.nav-up {
  top: -80px;
}
.ark-header.auto-hiding-navbar.nav-up.header-has-topbar {
  top: -100%;
}
.search-on-header-field .search-on-header-input {
  height: 88px;
}
.header-shrink .search-on-header-field .search-on-header-input {
  height: 68px;
}

@media (max-width: 991px) {
  header .navbar-logo .navbar-logo-img {
    max-width: none !important;
  }
  .header .navbar-actions .navbar-actions-shrink {
    max-height: none;
  }
  .header-fullscreen .header-fullscreen-col {
    width: calc(100% - 60px);
  }
  .header-fullscreen .header-fullscreen-col.header-fullscreen-nav-actions-left {
    width: 30px;
  }
  .search-on-header-field .search-on-header-input {
    height: 90px;
  }
  .ark-header .topbar-toggle-trigger {
    height: 20px;
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .ark-header .navbar-toggle {
    margin-top: 32.5px;
    margin-bottom: 32.5px;
  }
  .ark-header .navbar-actions .navbar-actions-shrink {
    line-height: 90px;
  }
  header .navbar-logo-wrap img {
    height: 45px !important;
  }
  .wrapper-top-space-xs {
    height: 90px;
  }
  .ark-header .navbar-logo .navbar-logo-wrap {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
  .header-fullscreen .header-fullscreen-nav-actions-left,
  .header-fullscreen .header-fullscreen-nav-actions-right {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ark-header.header-fullscreen .header-fullscreen-nav-actions-right {
    width: 30px;
  }
  .header-vertical .navbar-toggle,
  .header-section-scroll .navbar-toggle {
    margin-top: 32.5px;
    margin-bottom: 32.5px;
  }
  header.ark-header-vertical .navbar-logo .navbar-logo-wrap {
    padding-top: 22.5px !important;
    padding-bottom: 22.5px !important;
  }
  header.ark-header-vertical .shopping-cart-wrapper {
    margin-top: -55px;
  }
  .ark-header .ffb-header-template-item-vcenter {
    height: 90px;
  }
  .ffb-id-navigation-header .ark-header-vertical {
    box-shadow: 0 0 15px rgba(0, 0, 50, 0.09);
  }
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.current-menu-ancestor a.ffb-ark-first-level-menu,
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.current-menu-item a.ffb-ark-first-level-menu,
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.active a.ffb-ark-first-level-menu,
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li a.ffb-ark-first-level-menu:hover {
    color: var(--color-primary) !important;
  }
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li a.ffb-ark-first-level-menu:hover {
    background-color: #f8f2e4 !important;
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-ancestor > .ffb-ark-sub-level-menu,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-ancestor > .ffb-ark-sub-level-menu:after,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-item > .ffb-ark-sub-level-menu,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-item > .ffb-ark-sub-level-menu:after,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .active > .ffb-ark-sub-level-menu,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .active > .ffb-ark-sub-level-menu:after {
    color: var(--color-primary) !important;
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .ffb-ark-sub-level-menu:hover,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .ffb-ark-sub-level-menu:hover:after {
    color: var(--color-white) !important;
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .ffb-ark-sub-level-menu:hover {
    background-color: var(--color-primary) !important;
  }
}

@media (min-width: 992px) {
  .header .navbar-actions .navbar-actions-shrink {
    max-height: none;
  }
  .header-shrink.ark-header .navbar-actions .navbar-actions-shrink {
    max-height: none;
  }
  .wrapper > .wrapper-top-space {
    height: 90px;
  }
  .ark-header .navbar-logo .navbar-logo-wrap {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
  .header-shrink.ark-header .navbar-logo .navbar-logo-wrap {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
  .ark-header .navbar-nav .nav-item {
    line-height: 90px;
    max-height: 90px;
    overflow: visible;
  }
  .ark-header .navbar-nav .nav-item ul {
    line-height: 1.42857143;
  }
  header .navbar-logo-wrap img,
  header.header-shrink .navbar-logo-wrap img {
    height: 45px !important;
  }
  .ark-header .navbar-actions .navbar-actions-shrink {
    line-height: 89px;
  }
  .header-shrink.ark-header .navbar-actions .navbar-actions-shrink {
    line-height: 69px;
  }
  .ark-header.header-no-pills .navbar-nav .nav-item-child {
    line-height: 90px;
  }
  .ark-header.header-no-pills.header-shrink .navbar-nav .nav-item-child {
    line-height: 70px;
  }
  .ark-header.header-pills .navbar-nav .nav-item-child {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .ark-header.header-pills.header-shrink .navbar-nav .nav-item-child {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .header-fullscreen .header-fullscreen-nav-actions-left,
  .header-fullscreen .header-fullscreen-nav-actions-right {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .header-shrink.header-fullscreen .header-fullscreen-nav-actions-left,
  .header-shrink.header-fullscreen .header-fullscreen-nav-actions-right {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header-vertical {
    width: 258px;
  }
  .header-section-scroll-container {
    margin-left: 258px;
  }
  .header-section-scroll-container .fg-force-fullwidth,
  .header-vertical-container .fg-force-fullwidth,
  .ark-boxed__body-wrapper {
    padding-left: 258px;
  }
  .ark-header .ffb-header-template-item-vcenter {
    height: 90px;
  }
  .ark-header.header-shrink .ffb-header-template-item-vcenter {
    height: 70px;
  }
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.current-menu-ancestor a.ffb-ark-first-level-menu,
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.current-menu-item a.ffb-ark-first-level-menu,
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li.active a.ffb-ark-first-level-menu {
    color: var(--color-primary);
  }
  .ffb-id-navigation-header .ark-header-vertical ul.header-section-scroll-menu li a.ffb-ark-first-level-menu:hover {
    color: var(--color-white) !important;
    background-color: var(--color-accent) !important;
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-ancestor > .ffb-ark-sub-level-menu,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-ancestor > .ffb-ark-sub-level-menu:after,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-item > .ffb-ark-sub-level-menu,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .current-menu-item > .ffb-ark-sub-level-menu:after,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .active > .ffb-ark-sub-level-menu,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .active > .ffb-ark-sub-level-menu:after {
    color: var(--color-primary);
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .ffb-ark-sub-level-menu:hover,
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .ffb-ark-sub-level-menu:hover:after {
    color: var(--color-white) !important;
  }
  .ffb-id-navigation-header .ark-header-vertical .header-section-scroll-menu .ffb-ark-sub-level-menu:hover {
    background-color: var(--color-primary) !important;
  }
}

.ark-header.header-fullscreen .navbar-logo {
  min-height: 1px !important;
}
.ark-header.header-fullscreen .navbar-logo-wrap {
  width: 100% !important;
}

.ffb-id-navigation-header .ffb-header-design {
  margin-bottom: 20px;
}
header.ark-header-vertical .navbar-logo-wrap {
  padding: 0 !important;
  margin: 0 10px 0 10px;
}
.wrapper > .wrapper-top-space {
  height: 0 !important;
}

.ffb-id-navigation-header .ffb-ark-first-level-menu {
  border-radius: 10px !important;
  color: var(--color-primary) !important;
  text-transform: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}
.ffb-id-navigation-header .ffb-ark-first-level-menu:hover {
  color: var(--color-white) !important;
}

/* --- HERO COVER HEIGHT --- */
.ffb-id-96n8d1si {
  margin: 0;
  padding: 0;
}
.ffb-id-96n8d1si.fg-temp-height {
  height: 100vh;
}
.ffb-id-96n8d1sj {
  margin: 0;
  padding: 0;
  text-align: center !important;
}
.ffb-id-96n8d1sl {
  padding-right: 0;
  padding-left: 0;
}

/* --- KEN BURNS HERO EFFECTS --- */
.th-hp-kenburns-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.th-hp-kenburns {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.th-hp-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1.02);
  will-change: transform, opacity;
  backface-visibility: hidden;
  z-index: 0;
}
.th-hp-frame.is-active {
  opacity: 1;
  z-index: 1;
}
.th-hp-frame.is-zoom {
  animation: th-hp-zoom-in 6s linear forwards;
}
@keyframes th-hp-zoom-in {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.15);
  }
}
.th-hp-kenburns-empty {
  display: none;
}

@media (max-width: 991px) {
  section#home,
  .ffb-id-96n8d1si {
    height: auto !important;
    min-height: auto !important;
  }
  .th-hp-kenburns-wrap {
    height: auto !important;
  }
  .th-hp-kenburns {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  /* Pusty blok "template-end-of-header" (kontakt jest hidden-xs/sm) zostawiał
     odstęp w karcie nagłówka nad sliderem — ukrywamy go na mobile/tablecie. */
  header .template-end-of-header {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .th-hp-kenburns {
    aspect-ratio: 1 / 1;
  }
  /* Hero na mobile: jednolity margines 15px ze wszystkich stron.
     Zerujemy odstępy siatki (sekcja/kontener/wiersz/kolumna) i nadajemy
     marginy bezpośrednio wrapperowi slidera, żeby góra/dół = bokom. */
  #home.ffb-id-96n8d1si { padding: 0 !important; margin: 0 !important; }
  #home .fg-container.container-fluid { padding: 0 !important; }
  #home .fg-row { margin: 0 !important; }
  #home .ffb-id-96n8d1sj { padding: 0 !important; }
  #home .th-hp-kenburns-wrap {
    margin: 15px !important;
    width: auto !important;
  }
}


/* --- FOOTER & BRANDING (REFRACTORED FROM INDEX.PHP) --- */
.ffb-id-ppiisj0 {
  padding-top: 40px;
}
@media (min-width: 992px) {
  .ffb-id-ppiisj0 {
    padding-top: 60px;
  }
}
.ffb-id-ppiisj0,
.ffb-id-ppiisj0 h3,
.ffb-id-ppiisj0 p,
.ffb-id-ppiisj0 a {
  color: var(--color-white) !important;
}
.ffb-id-ppiisj0 a:hover {
  color: var(--color-white) !important;
}

.ffb-id-ppj8neq {
  margin-top: 10px;
}
.ffb-id-ppj8ner {
  padding-bottom: 20px;
}

.ffb-id-ppj8nfd {
  font-size: 13px !important;
  margin-bottom: 20px;
  padding-top: 5px;
  text-decoration: none !important;
}
@media (min-width: 992px) {
  .ffb-id-ppj8nfd {
    margin-left: 62px;
  }
}
@media (min-width: 1200px) {
  .ffb-id-ppj8nfd {
    margin-left: 130px;
  }
}
.ffb-id-ppj8nfd a {
  color: var(--color-white) !important;
}
.ffb-id-ppj8nfd a:hover {
  color: #f8f2e4 !important;
}

.ffb-id-ppkokkv {
  margin-bottom: 30px;
  padding-top: 5px;
  font-size: 13px !important;
  color: #cccccc !important;
}
.ffb-id-ppkokkv a {
  color: #cccccc !important;
}
.ffb-id-ppkokkv a:hover {
  color: var(--color-primary) !important;
}

.ffb-id-91hhgkev,
.ffb-id-ppj54vq,
.ffb-id-ppiq83b {
  margin-bottom: 25px;
}

/* --- PREMIUM VERTICAL HEADER & LAYOUT CORRECTIONS (DESKTOP) --- */
@media (min-width: 992px) {
  /* Zapewnienie, że pionowe menu boczna po lewej stronie staje się sztywnym (fixed) elementem na pełną wysokość */
  header.ark-header-vertical.ark-header-vertical-left {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 258px !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1000 !important;
    background: #ffffff !important; /* Solidne białe tło dla menu premium */
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.04) !important;
    border-right: 1px solid var(--color-border) !important;
    overflow-y: auto !important; /* Bezpieczne przewijanie pionowe przy mniejszych ekranach */
    scrollbar-width: none !important; /* Firefox */
  }

  /* Wyłączenie suwaków również w elementach podrzędnych */
  header.ark-header-vertical.ark-header-vertical-left .scrollbar,
  header.ark-header-vertical.ark-header-vertical-left .scrollbar-inner {
    overflow: visible !important;
  }
  header.ark-header-vertical.ark-header-vertical-left::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
  }

  /* Usunięcie zbędnych ujemnych marginesów oraz odstępów logotypu od góry w pionowym menu */
  header.ark-header-vertical-left .ffb-id-9alc2uoi {
    margin-top: 0 !important;
    padding-top: 25px !important; /* Estetyczny i elegancki odstęp logotypu */
    padding-bottom: 5px !important;
  }

  /* Podciągnięcie menu głównego wyżej, bezpośrednio pod logotyp */
  header.ark-header-vertical-left .nav-collapse,
  header.ark-header-vertical-left .navbar-collapse {
    margin-top: 5px !important;
    padding-top: 0 !important;
  }
  header.ark-header-vertical-left ul.header-section-scroll-menu {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important; /* Wyzerowanie dolnego marginesu menu dla precyzyjnego odsunięcia */
  }
  /* Zmniejszenie odstępów między elementami menu dla elegancji */
  header.ark-header-vertical-left ul.header-section-scroll-menu li.nav-item {
    margin-bottom: 5px !important;
  }
  header.ark-header-vertical-left ul.header-section-scroll-menu li.nav-item a.ffb-ark-first-level-menu {
    padding: 10px 20px !important;
    line-height: 1.2 !important;
  }

  /* Przesunięcie całej zawartości strony (page-wrapper) dokładnie o szerokość pionowego menu bocznego */
  .page-wrapper.header-vertical-container {
    margin-left: 258px !important;
    width: calc(100% - 258px) !important;
    box-sizing: border-box !important;
    float: none !important;
  }

  /* Eliminacja podwójnego przesunięcia (padding) dla sekcji o wymuszonej szerokości (np. Hero) */
  .page-wrapper.header-vertical-container .fg-force-fullwidth {
    padding-left: 0 !important;
  }

  /* Pełne wyzerowanie paddingu górnego i dolnego sekcji Hero (#home) */
  #home.ffb-id-96n8d1si {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Wyłączenie bezwzględnego pozycjonowania na dole i ustawienie dokładnie 50px odstępu pod menu */
  header.ark-header-vertical-left .template-end-of-header {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 50px !important; /* Dokładnie 50px odstępu pod menu nawigacyjnym */
    margin-bottom: 10px !important;
    width: 100% !important;
    display: block !important;
  }
  
  /* Wyzerowanie gigantycznych paddingów i wysokości generowanych przez system wewn. sekcji (fg-section) */
  header.ark-header-vertical-left .template-end-of-header .ffb-header-template-item-vcenter,
  header.ark-header-vertical-left .template-end-of-header .ffb-header-template-item-vcenter-inner,
  header.ark-header-vertical-left .template-end-of-header .fg-section,
  header.ark-header-vertical-left .template-end-of-header .fg-container,
  header.ark-header-vertical-left .template-end-of-header .fg-row,
  header.ark-header-vertical-left .template-end-of-header .fg-col,
  header.ark-header-vertical-left .template-end-of-header .fg-vcenter-wrapper,
  header.ark-header-vertical-left .template-end-of-header .fg-vcenter {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: auto !important;
    min-height: unset !important;
    display: block !important;
  }

  /* Dopasowanie kontaktu na dole menu do szerokości menu (258px) */
  header.ark-header-vertical-left .template-end-of-header-header-template-item,
  header.ark-header-vertical-left .ffb-id-96risr82,
  header.ark-header-vertical-left .ffb-id-96risr82 .fg-container,
  header.ark-header-vertical-left .ffb-id-96risr82 .fg-row,
  header.ark-header-vertical-left .ffb-id-96risr82 .fg-col {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
  }
  header.ark-header-vertical-left .kontakt-1 {
    width: calc(100% - 30px) !important; /* Estetyczny margines po 15px z każdej strony */
    max-width: calc(100% - 30px) !important;
    margin: 0 auto !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%) !important; /* Butelkowa zieleń w gradiencie premium */
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 25px rgba(27, 54, 32, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    border-radius: var(--border-radius-premium) !important; /* Zaokrąglone premium rogi */
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  }

  header.ark-header-vertical-left .kontakt-1:hover {
    box-shadow: 0 14px 35px rgba(27, 54, 32, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px) !important;
  }

  /* Telefon - Dział Sprzedaży */
  header.ark-header-vertical-left .kontakt-1 a.k1-phone {
    display: grid !important;
    grid-template-columns: 36px 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    gap: 0 8px !important;
    text-decoration: none !important;
    background: transparent !important;
    padding: 0 0 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  header.ark-header-vertical-left .kontakt-1 a.k1-phone::before {
    content: "DZIAŁ SPRZEDAŻY" !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: var(--color-accent) !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    opacity: 0.95 !important;
    margin-bottom: 2px !important;
  }

  header.ark-header-vertical-left .kontakt-1 a.k1-phone .k1-text {
    grid-column: 2 !important;
    grid-row: 2 !important;
    font-size: 23px !important;
    font-weight: 700 !important;
    color: var(--color-white) !important;
    line-height: 1.2 !important;
    text-align: left !important;
    letter-spacing: -0.01em !important;
    transition: color 0.3s ease !important;
  }

  header.ark-header-vertical-left .kontakt-1 a.k1-phone .icon-wrapper {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--color-white) !important;
    font-size: 14px !important;
    margin-right: 0 !important;
    transition: all 0.3s ease !important;
  }

  header.ark-header-vertical-left .kontakt-1 a.k1-phone:hover .icon-wrapper {
    background: var(--color-white) !important;
    color: var(--color-primary) !important;
    transform: scale(1.05) !important;
  }

  header.ark-header-vertical-left .kontakt-1 a.k1-phone:hover .k1-text {
    color: var(--color-accent-light) !important;
  }

  /* Email - Napisz do nas */
  header.ark-header-vertical-left .kontakt-1 a.k1-email {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 3px !important;
  }

  header.ark-header-vertical-left .kontakt-1 a.k1-email::before {
    content: "NAPISZ E-MAIL" !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: var(--color-accent) !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    opacity: 0.95 !important;
  }

  header.ark-header-vertical-left .kontakt-1 a.k1-email .k1-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--color-white) !important;
    opacity: 0.95 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
  }

  header.ark-header-vertical-left .kontakt-1 a.k1-email:hover .k1-text {
    color: var(--color-accent-light) !important;
    opacity: 1 !important;
  }
}

/* --- ZAPOBIEGANIE MIGANIU NIEUŁOŻONEJ TREŚCI (FOUC) --- */
body:not(.layout-ready) .page-wrapper {
  opacity: 0 !important;
}
body.layout-ready .page-wrapper {
  opacity: 1 !important;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* --- ESTETYCZNY I BEZPIECZNY PADDING DLA URZĄDZEŃ MOBILNYCH (< 992px) --- */
@media (max-width: 991px) {
  /* Wymuszenie standardowego marginesu bezpieczeństwa 15-20px na telefonach/tabletach */
  .fg-container.container,
  .content-section,
  .db_section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }
  
  /* Resetowanie ujemnych marginesów kolumn na telefonach, aby zapobiec ucinaniu/przewijaniu */
  .fg-row.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* --- PREMIUM SPLIT SECTION "O INWESTYCJI" WITH ORGANIC S-CURVE --- */
#o_inwestycji {
  background-color: #fcfaf6 !important;
}

.premium-about-section {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
  background-color: #fcfaf6 !important;
}

.premium-about-content {
  width: 50% !important;
  flex: 0 0 50% !important;
  padding: 80px 60px 80px 80px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.premium-badge-about {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 14px !important;
  border: 1px solid var(--color-primary) !important;
  border-radius: 30px !important;
  color: var(--color-primary) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  align-self: flex-start !important;
  margin-bottom: 25px !important;
  box-shadow: 0 2px 8px rgba(44, 87, 52, 0.05) !important;
}

.premium-badge-about svg {
  color: var(--color-accent) !important;
}

.premium-about-title {
  font-size: 38px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  color: var(--color-primary) !important;
  text-align: left !important;
  margin-top: 0 !important;
  margin-bottom: 22px !important;
  letter-spacing: -0.015em !important;
}

.premium-about-title .title-italic {
  font-family: 'Poppins', Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--color-accent) !important;
}

.premium-about-paragraph {
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: var(--color-text-main) !important;
  margin-bottom: 35px !important;
  max-width: 540px !important;
}

.premium-about-features {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-bottom: 35px !important;
  max-width: 540px !important;
}

.about-feature-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 1 !important;
  border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding-right: 10px !important;
}

.about-feature-item:last-child {
  border-right: none !important;
  padding-right: 0 !important;
}

.feat-icon-circle {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background-color: var(--color-accent-light) !important;
  color: var(--color-primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.feat-text {
  font-size: 12px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  color: var(--color-text-main) !important;
}

.premium-about-slogan {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: var(--color-primary-dark) !important;
  margin-bottom: 30px !important;
  text-align: left !important;
}

.premium-about-slogan .accent-text {
  font-family: 'Poppins', Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--color-accent) !important;
}

.premium-about-actions {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-bottom: 30px !important;
}

.btn-premium {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 24px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  border-radius: var(--border-radius-small) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.btn-premium svg {
  transition: transform 0.25s ease !important;
}

.btn-premium:hover svg {
  transform: translateX(4px) !important;
}

.btn-filled {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-primary) !important;
}

.btn-filled:hover {
  background-color: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
  color: var(--color-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(44, 87, 52, 0.15) !important;
}

.btn-outlined {
  background-color: transparent !important;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
}

.btn-outlined:hover {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(44, 87, 52, 0.1) !important;
}

.premium-about-location {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: var(--color-text-muted) !important;
  font-size: 13px !important;
}

.premium-about-location svg {
  color: var(--color-accent) !important;
}

.premium-about-image-wrap {
  width: 50% !important;
  flex: 0 0 50% !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 600px !important;
}

.premium-about-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.organic-wave-divider {
  position: absolute !important;
  top: 0 !important;
  left: -1px !important;
  width: 100px !important;
  height: 101% !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

.organic-wave-divider svg {
  width: 100% !important;
  height: 100% !important;
  fill: #fcfaf6 !important;
}

/* --- RESPONSIVE STYLE FOR PREMIUM ABOUT SECTION (< 992px) --- */
@media (max-width: 991px) {
  .premium-about-section {
    flex-direction: column !important;
  }
  
  .premium-about-content {
    width: 100% !important;
    flex: none !important;
    padding: 50px 20px !important;
  }
  
  .premium-about-image-wrap {
    width: 100% !important;
    flex: none !important;
    min-height: 400px !important;
  }
  
  .organic-wave-divider {
    display: none !important;
  }
  
  .premium-about-title {
    font-size: 28px !important;
  }
  
  .premium-about-features {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 15px !important;
  }
  
  .about-feature-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding-right: 0 !important;
    padding-bottom: 12px !important;
  }
  
  .about-feature-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
  
  .premium-about-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  
  .btn-premium {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* --- PREMIUM BENEFIT SECTION ("DLACZEGO WARTO WYBRAĆ TEN DOM?") --- */
.benefit-custom-section {
  background-color: #ffffff !important;
  padding: 100px 0 !important;
  width: 100% !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(44, 87, 52, 0.08) !important;
}

.benefit-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

.benefit-header {
  text-align: center !important;
  margin-bottom: 60px !important;
}

.benefit-leaf-badge {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
}

.benefit-main-title {
  font-size: 38px !important;
  line-height: 1.3 !important;
  font-weight: 800 !important;
  color: var(--color-primary) !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.01em !important;
}

.benefit-main-title .title-italic {
  font-family: 'Poppins', Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--color-accent) !important;
}

.benefit-subtitle {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: var(--color-text-muted) !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}

.benefit-cards-grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 30px !important;
  align-items: stretch !important;
  justify-content: center !important;
}

.benefit-premium-card {
  background-color: #fcfaf6 !important; /* Echoes the cream background of the about section above */
  flex: 1 !important;
  border-radius: 16px !important;
  padding: 50px 40px !important;
  text-align: center !important;
  box-sizing: border-box !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01) !important;
  border: 1px solid rgba(44, 87, 52, 0.05) !important;
  border-bottom: 5px solid var(--color-accent) !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  overflow: hidden !important;
}

.benefit-premium-card:hover {
  background-color: var(--color-white) !important; /* Glows to pure white on hover */
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(44, 87, 52, 0.07) !important;
  border-color: rgba(44, 87, 52, 0.1) !important;
}

.benefit-card-icon-wrap {
  margin-bottom: 20px !important;
}

.benefit-card-circle {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  background-color: #f3f5f2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 0.3s ease !important;
}

.benefit-premium-card:hover .benefit-card-circle {
  background-color: var(--color-accent-light) !important;
}

.benefit-card-divider {
  width: 32px !important;
  height: 2px !important;
  background-color: var(--color-accent) !important;
  margin-bottom: 24px !important;
  border-radius: 2px !important;
  transition: width 0.3s ease !important;
}

.benefit-premium-card:hover .benefit-card-divider {
  width: 48px !important;
}

.benefit-card-title {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--color-primary-dark) !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  line-height: 1.3 !important;
}

.benefit-card-desc {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--color-text-main) !important;
  margin: 0 !important;
}

/* --- RESPONSIVE STYLE FOR BENEFITS (< 992px) --- */
@media (max-width: 991px) {
  .benefit-custom-section {
    padding: 70px 0 !important;
  }
  
  .benefit-main-title {
    font-size: 30px !important;
  }
  
  .benefit-cards-grid {
    flex-direction: column !important;
    gap: 24px !important;
  }
  
  .benefit-premium-card {
    padding: 40px 30px !important;
  }
}

/* --- PREMIUM FAMILY SECTION ("MIEJSCE STWORZONE DLA RODZIN") --- */
.family-custom-section {
  background-color: #fcfaf6 !important;
  padding: 100px 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(44, 87, 52, 0.05) !important;
  border-bottom: 1px solid rgba(44, 87, 52, 0.05) !important;
}

.family-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

.family-header {
  text-align: center !important;
  margin-bottom: 60px !important;
}

.family-badge-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

.family-line {
  height: 1px !important;
  width: 60px !important;
  background-color: var(--color-accent) !important;
  opacity: 0.4 !important;
}

.family-badge {
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  font-weight: 600 !important;
  color: var(--color-accent) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.family-badge-icon {
  color: var(--color-accent) !important;
}

.family-main-title {
  font-family: 'Poppins', Arial, sans-serif !important;
  font-size: 42px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  color: var(--color-primary-dark) !important;
  margin: 0 0 20px 0 !important;
  letter-spacing: -0.01em !important;
}

.family-subtitle {
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: var(--color-text-muted) !important;
  max-width: 750px !important;
  margin: 0 auto !important;
}

/* Video / Image Container */
.family-video-section {
  margin-bottom: 80px !important;
  display: flex !important;
  justify-content: center !important;
}

.family-video-wrapper {
  position: relative !important;
  width: 100% !important;
  max-width: 1000px !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(27, 54, 32, 0.12) !important;
  cursor: pointer !important;
  background-color: #000 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.family-video-wrapper:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 30px 70px rgba(27, 54, 32, 0.18) !important;
}

.family-video-wrapper video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.family-video-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s !important;
  z-index: 2 !important;
}

.family-video-overlay::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(27, 54, 32, 0.25) !important;
  z-index: 1 !important;
  transition: background-color 0.4s ease !important;
}

.family-video-wrapper:hover .family-video-overlay::before {
  background: rgba(27, 54, 32, 0.15) !important;
}

.family-video-overlay.is-playing {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.family-play-btn {
  position: relative !important;
  z-index: 3 !important;
  width: 90px !important;
  height: 90px !important;
  border-radius: 50% !important;
  background-color: var(--color-white) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--color-primary) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background-color 0.3s ease !important;
}

.family-play-btn svg {
  width: 32px !important;
  height: 32px !important;
  margin-left: 4px !important;
  transition: transform 0.3s ease !important;
}

.family-video-wrapper:hover .family-play-btn {
  transform: scale(1.1) !important;
  background-color: var(--color-accent-light) !important;
  box-shadow: 0 15px 40px rgba(117, 158, 88, 0.3) !important;
}

.family-play-btn:active {
  transform: scale(0.95) !important;
}

.family-video-logo {
  position: absolute !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 3 !important;
  background-color: var(--color-primary) !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  box-shadow: 0 8px 24px rgba(27, 54, 32, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 48px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.family-video-logo img {
  height: 24px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
}

/* 3-Column Features Grid */
.family-features-grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 0px !important;
  align-items: stretch !important;
}

.family-feature-col {
  flex: 1 !important;
  padding: 0 45px !important;
  border-right: 1px solid rgba(44, 87, 52, 0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  box-sizing: border-box !important;
}

.family-feature-col:last-child {
  border-right: none !important;
}

.family-feature-col:first-child {
  padding-left: 0 !important;
}

.family-feature-col:last-child {
  padding-right: 0 !important;
}

.family-feature-icon-box {
  margin-bottom: 24px !important;
}

.family-feature-circle {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background-color: var(--color-accent-light) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--color-primary) !important;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
}

.family-feature-col:hover .family-feature-circle {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  transform: scale(1.05) !important;
}

.family-feature-meta {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-bottom: 12px !important;
  width: 100% !important;
}

.family-feature-num {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: rgba(44, 87, 52, 0.15) !important;
  line-height: 1 !important;
  font-family: 'Poppins', Arial, sans-serif !important;
  transition: color 0.3s ease !important;
}

.family-feature-col:hover .family-feature-num {
  color: var(--color-accent) !important;
}

.family-feature-accent {
  height: 2px !important;
  flex-grow: 1 !important;
  background-color: var(--color-accent) !important;
  opacity: 0.2 !important;
  transition: opacity 0.3s ease, background-color 0.3s ease !important;
}

.family-feature-col:hover .family-feature-accent {
  opacity: 0.8 !important;
  background-color: var(--color-primary) !important;
}

.family-feature-title {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: var(--color-primary-dark) !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.35 !important;
}

.family-feature-desc {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: var(--color-text-main) !important;
  margin: 0 !important;
}

/* --- RESPONSIVE STYLE FOR FAMILY SECTION (< 992px) --- */
@media (max-width: 991px) {
  .family-custom-section {
    padding: 70px 0 !important;
  }
  
  .family-main-title {
    font-size: 32px !important;
  }
  
  .family-video-wrapper {
    border-radius: 16px !important;
  }
  
  .family-play-btn {
    width: 70px !important;
    height: 70px !important;
  }
  
  .family-play-btn svg {
    width: 24px !important;
    height: 24px !important;
    margin-left: 3px !important;
  }
  
  .family-video-logo {
    bottom: 15px !important;
    right: 15px !important;
    height: 38px !important;
    padding: 8px 15px !important;
  }
  
  .family-video-logo img {
    height: 18px !important;
  }
  
  .family-features-grid {
    flex-direction: column !important;
    gap: 40px !important;
  }
  
  .family-feature-col {
    padding: 0 20px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(44, 87, 52, 0.1) !important;
    padding-bottom: 30px !important;
  }
  
  .family-feature-col:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
  
  .family-feature-col:first-child {
    padding-left: 20px !important;
  }
  
  .family-feature-col:last-child {
    padding-right: 20px !important;
  }
}

/* ============================================================
   SEKCJA LOKALIZACJI — Premium redesign (opcja 2)
   ============================================================ */

#lokalizacja {
  background-color: #f7f8fa !important;
}

#lokalizacja .ffb-id-8nt7j4vn p {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: #56773f !important;
  margin-bottom: 16px !important;
}

/* Nagłówek nad mapą */
.loc-above-map-header {
  text-align: center;
  padding-bottom: 36px;
}

.loc-above-map-header h2 {
  font-size: 38px !important;
  font-weight: 900 !important;
  color: #1c3d22 !important;
  line-height: 1.18 !important;
  margin-bottom: 16px !important;
}

.loc-above-map-header h2 em {
  font-style: normal;
  color: #56773f !important;
}

.loc-above-map-header p {
  font-size: 17px !important;
  color: #666 !important;
  max-width: 580px !important;
  margin: 0 auto !important;
  line-height: 1.65 !important;
}

/* Mapa iframe — zaokrąglenia + cień */
.ffb-id-91hq8g6b {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44, 87, 52, 0.10);
  background: #e8ede6;
  line-height: 0;
}

.ffb-id-91hq8g6b iframe {
  display: block;
  width: 100% !important;
  height: 420px !important;
  border: none !important;
  border-radius: 18px;
}

/* Kontener kart */
.loc-premium-container {
  max-width: 100% !important;
  margin: 36px 0 0 !important;
  padding: 0 !important;
}

/* Stary loc-header przeniesiony nad mapę — ukryty */
.loc-header {
  display: none !important;
}

/* Grid 2×2 */
.loc-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 32px !important;
}

/* Karta */
.loc-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 26px 22px !important;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06) !important;
  border-top: none !important;
  border: 1px solid rgba(44, 87, 52, 0.07) !important;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.loc-card:hover {
  box-shadow: 0 8px 26px rgba(44, 87, 52, 0.13) !important;
  transform: translateY(-3px);
}

/* Ikona w karcie */
.loc-card-icon {
  width: 46px;
  height: 46px;
  background: #2c5734;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.loc-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loc-card h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1c3d22 !important;
  margin-bottom: 16px !important;
  border-bottom: 1px solid #f0f4ee !important;
  padding-bottom: 12px !important;
}

.loc-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.loc-item {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid #f5f7f4 !important;
  gap: 10px;
}

.loc-item:last-child {
  border-bottom: none !important;
}

.loc-place {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #444 !important;
  flex: 1;
}

.loc-distance-info {
  text-align: right !important;
  flex-shrink: 0;
}

.loc-km {
  display: block !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #2c5734 !important;
}

.loc-time {
  display: block !important;
  font-size: 11.5px !important;
  color: #aaa !important;
  white-space: nowrap;
}

/* Footer */
.loc-footer {
  background: transparent !important;
  border-top: 1px solid #e4ece2;
  padding: 28px 0 8px !important;
  text-align: center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.loc-footer p {
  font-size: 16px !important;
  color: #555 !important;
  line-height: 1.7 !important;
  max-width: 720px;
  margin: 0 auto !important;
}

.loc-footer strong {
  color: #2c5734 !important;
  font-weight: 600 !important;
}

.loc-footer::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: #56773f;
  margin: 22px auto 0;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .loc-grid {
    grid-template-columns: 1fr !important;
  }

  .ffb-id-91hq8g6b iframe {
    height: 280px !important;
  }

  .loc-above-map-header h2 {
    font-size: 26px !important;
  }

  /* Ujednolicenie bocznych marginesów: usuwamy zdublowane wcięcia
     (zagnieżdżony fg-container 20px + fg-col 15px + premium 24px),
     zostaje spójne ~20px z paddingu samej sekcji #lokalizacja */
  #lokalizacja > .fg-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #lokalizacja .fg-col {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #lokalizacja .loc-premium-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ===== STANDARD WYKONANIA v2 ===== */

.standard-v2-section {
  background: #f5f4f0;
  padding: var(--spacing-section) 0;
  overflow: hidden;
}

.standard-v2-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.standard-v2-header {
  text-align: center;
  margin-bottom: 56px;
}

.standard-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.standard-v2-eyebrow svg {
  width: 15px;
  height: 15px;
}

.standard-v2-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.1;
  margin: 0 0 16px;
}

.standard-v2-header h2 span {
  color: var(--color-accent);
}

.standard-v2-header > p {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.standard-v2-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}

.standard-v2-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.standard-v2-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  max-height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.standard-v2-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(22, 44, 27, 0.88);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.standard-v2-badge svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.standard-v2-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3px;
}

.standard-v2-badge span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.75;
}

.standard-v2-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.standard-v2-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px 18px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.055);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.standard-v2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.standard-v2-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.standard-v2-card-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--color-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.standard-v2-card-icon svg {
  width: 21px;
  height: 21px;
}

.standard-v2-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.standard-v2-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}

.standard-v2-card ul li {
  font-size: 13px;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.standard-v2-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 13px;
}

.standard-v2-details-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: color 0.2s, gap 0.2s;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  width: 100%;
  text-align: left;
}

.standard-v2-details-btn:hover {
  color: var(--color-primary);
  gap: 10px;
}

.standard-v2-banner {
  background: #eef3e8;
  border-radius: 16px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.standard-v2-banner-leaf {
  position: absolute;
  left: -8px;
  top: -8px;
  opacity: 0.11;
  pointer-events: none;
  color: var(--color-primary);
}

.standard-v2-banner-leaf svg {
  width: 110px;
  height: 130px;
}

.standard-v2-banner-content {
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.standard-v2-banner-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 6px;
  line-height: 1.35;
}

.standard-v2-banner-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.standard-v2-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.standard-v2-banner-btn:hover {
  background: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.standard-v2-banner-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Standard v2 Modals */

.standard-v2-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10100;
  align-items: center;
  justify-content: center;
}

.standard-v2-modal.is-open {
  display: flex;
}

.standard-v2-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.standard-v2-modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 580px;
  width: 92%;
  overflow: visible;
  z-index: 1;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.standard-v2-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: #f0f0ef;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.18s;
}

.standard-v2-modal-close:hover {
  background: var(--color-accent-light);
}

.standard-v2-modal-box h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-border);
}

.standard-v2-modal-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.standard-v2-modal-box ul li {
  font-size: 15px;
  color: #444;
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
}

.standard-v2-modal-box ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
}

/* Standard v2 Responsive */

@media (max-width: 900px) {
  .standard-v2-main {
    grid-template-columns: 1fr;
  }
  .standard-v2-photo img {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (max-width: 640px) {
  .standard-v2-cards {
    grid-template-columns: 1fr;
  }
  .standard-v2-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }
  .standard-v2-banner-btn {
    width: 100%;
    justify-content: center;
  }
  .standard-v2-modal-box {
    padding: 28px 20px;
  }
}

/* Na małych/niskich ekranach przywróć przewijanie, gdy treść nie mieści się w viewport */
@media (max-width: 640px), (max-height: 700px) {
  .standard-v2-modal-box {
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* === GALLERY V2 (#plany_domow) === */
.gallery-v2-section {
  background: #f7f8fa;
  padding: var(--spacing-section, 80px) 0;
}
.gallery-v2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.gallery-v2-block {
  margin-bottom: 64px;
}
.gallery-v2-block--centered {
  margin-bottom: 72px;
}
.gallery-v2-header {
  margin-bottom: 28px;
}
.gallery-v2-header--center {
  text-align: center;
}
.gallery-v2-header--center .gallery-v2-icon-wrap {
  margin-left: auto;
  margin-right: auto;
}
.gallery-v2-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #eef3e8;
  border-radius: 12px;
  color: #4a7c59;
  margin-bottom: 14px;
}
.gallery-v2-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4a7c59;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.gallery-v2-heading {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  color: #1a2e1e;
  line-height: 1.2;
  margin: 0 0 12px;
}
.gallery-v2-heading em {
  font-style: normal;
  color: #4a7c59;
}
.gallery-v2-sub {
  font-size: 15px;
  color: #5a6b60;
  line-height: 1.6;
  margin: 0;
}

/* grids */
.gallery-v2-grid {
  display: grid;
  gap: 12px;
}
.gallery-v2-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-v2-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* items */
.gallery-v2-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  text-decoration: none;
}
.gallery-v2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-v2-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 44, 27, 0);
  transition: background 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
}
.gallery-v2-item:hover img {
  transform: scale(1.05);
}
.gallery-v2-item:hover::after {
  background: rgba(22, 44, 27, 0.16);
}

/* split layout */
.gallery-v2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 10px;
}

/* banner */
.gallery-v2-banner {
  background: #eef3e8;
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.gallery-v2-banner-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-v2-banner-content {
  flex: 1;
}
.gallery-v2-banner-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a2e1e;
  margin-bottom: 4px;
}
.gallery-v2-banner-content span {
  display: block;
  font-size: 13px;
  color: #5a6b60;
  line-height: 1.5;
}
.gallery-v2-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #1a2e1e;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a2e1e;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.gallery-v2-banner-btn:hover {
  background: #1a2e1e;
  color: #fff;
}

/* lightbox */
.gallery-v2-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10200;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.gallery-v2-lb.is-open {
  display: flex;
}
.gallery-v2-lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.gallery-v2-lb-close,
.gallery-v2-lb-prev,
.gallery-v2-lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.gallery-v2-lb-close:hover,
.gallery-v2-lb-prev:hover,
.gallery-v2-lb-next:hover {
  background: rgba(255, 255, 255, 0.28);
}
.gallery-v2-lb-close {
  top: 20px;
  right: 20px;
  font-size: 18px;
}
.gallery-v2-lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}
.gallery-v2-lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}

/* responsive */
@media (max-width: 960px) {
  .gallery-v2-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gallery-v2-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .gallery-v2-grid--2,
  .gallery-v2-grid--3 {
    grid-template-columns: 1fr;
  }
  .gallery-v2-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
  .gallery-v2-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

.gallery-v2-disclaimer {
  font-size: 14px;
  color: #8a9e8a;
  line-height: 1.65;
  margin: 0 0 20px;
  padding: 0;
}

/* scroll offset for fixed navbar (~90px) */
section[id] {
  scroll-margin-top: 90px;
}

/* fix: sekcje poza page-wrapper nie dostawały margin-left od sidebar */
@media (min-width: 992px) {
  .zapytaj-section {
    margin-left: 258px !important;
    width: calc(100% - 258px) !important;
    box-sizing: border-box !important;
  }
}

/* === FOOTER V2 (#kontakt) === */
.footer-v2 {
  background: #2c5734;
  color: #fff;
}
.footer-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 0;
}
.footer-v2-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-v2-logo-link { display: block; margin-bottom: 16px; text-decoration: none; }
.footer-v2-brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-v2-favicon {
  width: 52px;
  height: 52px;
  display: block;
  flex-shrink: 0;
}
.footer-v2-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-v2-brand-domy {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-v2-brand-brzeziny {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-v2-logo {
  max-height: 64px;
  width: auto;
  display: block;
}
.footer-v2-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0 0 20px;
}
.footer-v2-social { display: flex; gap: 10px; }
.footer-v2-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-v2-social-link:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

.footer-v2-col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #a3d96a;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-v2-col-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: rgba(255,255,255,0.1);
  font-size: 11px;
  flex-shrink: 0;
}
.footer-v2-col-body {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.footer-v2-col-body strong { color: #fff; font-weight: 600; }

.footer-v2-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.footer-v2-map-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.footer-v2-phone {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 4px;
  line-height: 1.2;
}
.footer-v2-phone:hover { color: #a3d96a; }
.footer-v2-email-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-v2-email-link:hover { color: #a3d96a; }

.footer-v2-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.footer-v2-hours-row { display: flex; align-items: center; gap: 8px; }
.footer-v2-hours-indent { padding-left: 22px; }

.footer-v2-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-v2-policy {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-v2-policy:hover { color: rgba(255,255,255,0.75); }

@media (max-width: 960px) {
  .footer-v2-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 580px) {
  .footer-v2-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-v2-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  /* +2px do czcionek w stopce na mobile */
  .footer-v2-tagline    { font-size: 16px; }
  .footer-v2-col-head   { font-size: 13px; }
  .footer-v2-col-body   { font-size: 16px; }
  .footer-v2-map-btn    { font-size: 14px; }
  .footer-v2-email-link { font-size: 16px; }
  .footer-v2-hours      { font-size: 15px; }
  .footer-v2-bottom     { font-size: 14px; }
  .footer-v2-policy     { font-size: 13px; }
}

@media (min-width: 992px) {
  .footer-v2 {
    margin-left: 258px !important;
    width: calc(100% - 258px) !important;
    box-sizing: border-box !important;
  }
}

/* =====================================================
   HERO — overlay wrapper, eyebrow, divider, features
   ===================================================== */

/* Wrapper przejmuje pozycjonowanie od h1 */
.hero-overlay-wrap {
  position: absolute;
  bottom: 8%;
  left: 5%;
  z-index: 3;
  pointer-events: none;
  text-align: left;
}

/* h1 w trybie statycznym wewnątrz wrappera */
.hero-overlay-wrap .th-hp-hero-title {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  z-index: auto !important;
  padding: 0;
  margin: 0;
  line-height: 1;
  text-align: left !important;
  pointer-events: none;
}

/* Rozmiary głównych tekstów hero */
.th-hp-hero-title .hero-massive {
  font-size: clamp(2.4rem, 5vw, 5rem) !important;
}
.th-hp-hero-title .hero-medium {
  font-size: clamp(1.1rem, 2vw, 2rem) !important;
}
.th-hp-hero-title .hero-sub {
  font-size: clamp(1.1rem, 2vw, 2rem) !important;
}

/* Eyebrow: mały z akcentową złotą kreską */
.th-hp-hero-title .hero-eyebrow {
  display: flex !important;
  align-items: center !important;
  gap: 14px;
  font-size: 0.75rem !important;
  letter-spacing: 0.35em !important;
  margin-bottom: 6px;
}
.th-hp-hero-title .hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

/* Widoczna kreska rozdzielająca */
.th-hp-hero-title .hero-divider {
  display: block !important;
  width: 56px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.35);
  margin: 14px 0;
}

/* Wiersz z ikonami */
.hero-features {
  display: flex !important;
  align-items: flex-start;
  gap: 0;
  margin-top: 32px;
  pointer-events: auto;
  line-height: normal;
}
.hero-feat-item {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-right: 24px;
}
.hero-feat-icon {
  stroke: rgba(163, 217, 106, 0.9);
  fill: none;
  width: 28px !important;
  height: 28px !important;
  flex-shrink: 0;
}
.hero-feat-item > span {
  font-family: 'Poppins', Arial, sans-serif !important;
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-align: left !important;
  line-height: 1.4 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75) !important;
}
.hero-feat-sep {
  display: block !important;
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.22);
  align-self: center;
  margin-right: 24px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .hero-overlay-wrap { bottom: 5%; left: 4%; }
  .hero-features { display: none !important; }
  .th-hp-hero-title .hero-eyebrow { font-size: 0.7rem !important; gap: 10px; }
  .th-hp-hero-title .hero-eyebrow::after { width: 22px; }
  .th-hp-hero-title .hero-divider { width: 36px; margin: 10px 0; }
}

/* =====================================================
   GLOBAL FONT OVERRIDE — Poppins, brak Lora / Droid Serif
   ===================================================== */
.op-b-read-more,
.op-b-testimonials .op-b-testimonials-star-no,
.op-b-testimonials .op-b-testimonials-quote,
.op-b-testimonials .op-b-testimonials-quote p,
.op-b-header .nav-item,
.op-b-header .nav-item .nav-item-child,
.op-b-promo-b-v3 .op-b-promo-b-v3-title,
.l-testimonials-v1 .l-testimonials-v1-quote-mark::before {
  font-family: 'Poppins', Arial, sans-serif !important;
}

/* =====================================================
   UNIFORM CONTAINER — override inline <style> blocks
   max-width: 1200px, padding: 0 24px
   ===================================================== */
.loc-premium-container {
  max-width: 1200px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
