@font-face {
  font-family: "Roboto";
  src: url("/fonts/roboto-latin-ext.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/roboto-latin.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-latin-ext.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --text: #241f1d;
  --muted: #665d58;
  --bg: #fbfaf8;
  --surface: #ffffff;
  --border: #e6dfd8;
  --brand: #e9511d;
  --brand-dark: #b83c17;
  --deep: #181614;
  --sage: #69786a;
  --max: 1120px;
  --header-max: 1240px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
}

.header-menu-inner,
.footer-inner,
.main-inner,
.contact-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.header-logo-row {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #d8d2cf;
  background: #fff;
}

.header-menu-row {
  border-bottom: 1px solid #d8d2cf;
  background: #fff;
}

.header-menu-inner {
  display: grid;
  width: min(100%, var(--header-max));
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--deep);
  text-decoration: none;
}

.brand img {
  width: min(280px, 64vw);
  max-height: 62px;
  object-fit: contain;
}

.header-logo-actions {
  position: absolute;
  right: max(16px, calc((100% - var(--header-max)) / 2));
  display: flex;
  align-items: center;
  gap: 13px;
}

.mobile-header-actions {
  display: none;
}

.mobile-menu-row {
  display: none;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #d8d2cf;
  padding: 7px 13px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.header-contact-link:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.primary-nav,
.language-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 10px 15px;
  flex-wrap: wrap;
}

.primary-nav {
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.primary-nav a,
.language-nav a,
.footer-nav a {
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 400;
  text-decoration: none;
}

.primary-nav a:hover,
.language-nav a:hover,
.footer-nav a:hover {
  color: var(--brand);
}

.nav-link[aria-current="page"] {
  color: var(--brand);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 88px;
  border-left: 1px solid #d8d2cf;
  padding: 0 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav > .nav-link:last-child,
.primary-nav > .nav-item:last-child > .nav-link {
  border-right: 1px solid #d8d2cf;
}

.has-submenu > .nav-link::after {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 40;
  display: grid;
  min-width: 260px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(24, 22, 20, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.submenu::before {
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  height: 13px;
  content: "";
}

.primary-nav > .nav-item:last-child .submenu {
  right: 0;
  left: auto;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu-link {
  display: block;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  color: var(--text);
  white-space: nowrap;
}

.submenu-link:last-child {
  border-bottom: 0;
}

.submenu-link:hover,
.submenu-link[aria-current="page"] {
  color: var(--brand);
  background: #fbfaf8;
}

.mobile-menu {
  display: none;
}

.mobile-menu > summary {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu > summary span,
.mobile-menu > summary span::before,
.mobile-menu > summary span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu > summary span {
  position: relative;
}

.mobile-menu > summary span::before,
.mobile-menu > summary span::after {
  position: absolute;
  left: 0;
  content: "";
}

.mobile-menu > summary span::before {
  top: -6px;
}

.mobile-menu > summary span::after {
  top: 6px;
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 0 4px;
  width: 100%;
}

.mobile-nav-link,
.mobile-submenu summary,
.mobile-submenu-link {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--text);
  text-decoration: none;
}

.mobile-nav-link[aria-current="page"],
.mobile-submenu-link[aria-current="page"] {
  border-color: var(--brand);
  color: var(--brand);
}

.mobile-submenu {
  grid-column: 1 / -1;
  min-width: 0;
}

.mobile-submenu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.mobile-submenu summary::-webkit-details-marker {
  display: none;
}

.mobile-submenu summary span {
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mobile-submenu[open] summary span {
  transform: rotate(225deg) translateY(-2px);
}

.mobile-submenu-panel {
  display: grid;
  gap: 8px;
  padding: 8px 0 2px;
}

.mobile-parent-link {
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 12px;
  padding: 0 14px;
  justify-content: flex-end;
}

.language-nav {
  flex-direction: column;
  gap: 5px;
}

.header-logo-actions .language-nav {
  flex-direction: row;
  gap: 7px;
}

.language-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  line-height: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.flag-image {
  display: block;
  width: 21px;
  height: 14px;
  object-fit: cover;
}

.button-link,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  padding: 10px 16px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.button-link:hover,
.submit-button:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}

.home-page .site-header {
  position: absolute;
  right: 0;
  left: 0;
  border-bottom-color: transparent;
  background: transparent;
  color: #fff;
}

.home-page .header-menu-row {
  border-bottom: 0;
  background: transparent;
}

.home-page .header-menu-inner {
  width: min(100% - 32px, var(--header-max));
  min-height: 70px;
  justify-items: end;
}

.home-page .brand,
.home-page .primary-nav,
.home-page .mobile-menu {
  display: none;
}

.home-page .language-nav {
  flex-direction: row;
  gap: 8px;
}

.home-page .language-nav a {
  padding: 0;
  background: transparent;
  border: none;
}

.home-page .language-nav a:hover {
  opacity: 0.72;
}

.home-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: 7px 13px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.home-contact-link:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.home-page .submenu a {
  color: var(--text);
}

.home-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.home-main {
  display: flex;
  flex: 1 1 auto;
  background: var(--bg);
}

.home-hero {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  padding: clamp(84px, 9vh, 104px) clamp(24px, 5vw, 96px) clamp(24px, 5vh, 56px);
  overflow: hidden;
  background: url("/images/pozadi/pozadi_002.jpg") center / cover no-repeat;
  color: #fff;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 20, 0.66);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(100%, 1800px);
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.home-logo {
  width: min(440px, 34vh, 86%);
  margin-bottom: clamp(16px, 3vh, 40px);
}

.home-hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.home-category-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(28px, 5.5vh, 52px);
}

.home-category {
  display: grid;
  min-height: clamp(84px, 13vh, 164px);
  align-content: center;
  justify-items: center;
  gap: clamp(8px, 1.5vh, 16px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  padding: clamp(14px, 2.2vh, 26px) 20px;
  background: rgba(24, 22, 20, 0.16);
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: scale(1.55);
  animation: home-category-in 420ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  transition: background 200ms ease, border-color 200ms ease, transform 140ms ease;
}

.home-category:nth-child(2) {
  animation-delay: 140ms;
}

.home-category:nth-child(3) {
  animation-delay: 280ms;
}

.home-category:nth-child(4) {
  animation-delay: 420ms;
}

.home-category:nth-child(5) {
  animation-delay: 560ms;
}

.home-category:nth-child(6) {
  animation-delay: 700ms;
}

.home-category:hover,
.home-category:focus-visible {
  border-color: #fff;
  background: var(--brand);
  box-shadow: 0 16px 38px rgba(233, 81, 29, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.home-category img {
  width: clamp(44px, 7.5vh, 82px);
  height: clamp(44px, 7.5vh, 82px);
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-category span {
  width: 100%;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

@keyframes home-category-in {
  from {
    opacity: 0;
    transform: scale(1.55);
  }

  55% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.main-inner {
  padding: 48px 0 58px;
}

.page-title-block {
  margin: -8px 0 36px;
  border-bottom: 1px solid var(--border);
  padding: 0 0 28px;
}

.page-title-block h1 {
  margin: 0;
  color: var(--brand);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.12;
  text-transform: none;
}

.page-title-block p {
  max-width: 820px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 500;
  line-height: 1.4;
}

.page-kicker {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legacy-content {
  overflow-wrap: break-word;
  word-break: break-word;
}

.legacy-content h1,
.legacy-content h2,
.legacy-content h3,
.legacy-content h4,
.legacy-content .legacy-generated-heading {
  margin: 2rem 0 0.65rem;
  color: var(--brand);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.16rem, 1.65vw, 1.45rem);
  font-weight: 600;
  line-height: 1.24;
  text-transform: uppercase;
}

.legacy-content p {
  margin: 0 0 1.05rem;
}

.legacy-content .page-title-block h1 {
  margin: 0;
  color: var(--brand);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.12;
  text-transform: none;
}

.legacy-content .page-title-block p {
  max-width: 820px;
  margin: 10px 0 0;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
}

.legacy-content ul,
.legacy-content ol {
  padding-left: 1.2rem;
}

.legacy-content table {
  display: block;
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.legacy-content th,
.legacy-content td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  vertical-align: top;
  white-space: nowrap;
}

.legacy-content .sp-page-title {
  margin: -16px 0 42px;
  border-bottom: 1px solid var(--border);
  padding: 22px 0 30px;
  background: transparent;
  color: var(--text);
}

.legacy-content .sp-page-title h1,
.legacy-content .sp-page-title h2,
.legacy-content .sp-page-title h3 {
  max-width: 920px;
  margin: 0;
}

.legacy-content .sp-page-title h1 {
  color: var(--brand);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.12;
  text-transform: none;
}

.legacy-content .sp-page-title h2,
.legacy-content .sp-page-title h3 {
  margin-top: 8px;
  color: var(--muted);
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

.legacy-content .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}

.legacy-content .sppb-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}

.legacy-content .sppb-row-container,
.legacy-content .sppb-container,
.legacy-content .sppb-container-inner,
.legacy-content .container,
.legacy-content .container-inner {
  width: 100%;
}

.legacy-content [class*="sppb-col-md-"],
.legacy-content [class*="sppb-col-sm-"] {
  min-width: 0;
}

.legacy-content .sppb-col-md-12,
.legacy-content .col-lg-12,
.legacy-content .span12 {
  grid-column: 1 / -1;
}

.legacy-content .sppb-col-md-1 {
  grid-column: span 1;
}

.legacy-content .sppb-col-md-2 {
  grid-column: span 2;
}

.legacy-content .sppb-col-md-3 {
  grid-column: span 3;
}

.legacy-content .sppb-col-md-4 {
  grid-column: span 4;
}

.legacy-content .sppb-col-md-5 {
  grid-column: span 5;
}

.legacy-content .sppb-col-md-6 {
  grid-column: span 6;
}

.legacy-content .sppb-col-md-7 {
  grid-column: span 7;
}

.legacy-content .sppb-col-md-8 {
  grid-column: span 8;
}

.legacy-content .sppb-col-md-9 {
  grid-column: span 9;
}

.legacy-content .sppb-col-md-10 {
  grid-column: span 10;
}

.legacy-content .sppb-col-md-11 {
  grid-column: span 11;
}

.legacy-content .sppb-col-sm-1 {
  grid-column: span 1;
}

.legacy-content .sppb-col-sm-2 {
  grid-column: span 2;
}

.legacy-content .sppb-col-sm-3 {
  grid-column: span 3;
}

.legacy-content .sppb-col-sm-4 {
  grid-column: span 4;
}

.legacy-content .sppb-col-sm-5 {
  grid-column: span 5;
}

.legacy-content .sppb-col-sm-6 {
  grid-column: span 6;
}

.legacy-content .sppb-col-sm-7 {
  grid-column: span 7;
}

.legacy-content .sppb-col-sm-8 {
  grid-column: span 8;
}

.legacy-content .sppb-col-sm-9 {
  grid-column: span 9;
}

.legacy-content .sppb-col-sm-10 {
  grid-column: span 10;
}

.legacy-content .sppb-col-sm-11 {
  grid-column: span 11;
}

.legacy-content .sppb-col-sm-12 {
  grid-column: 1 / -1;
}

.legacy-content section {
  margin: clamp(18px, 3vw, 38px) 0;
}

.legacy-content section:first-child {
  margin-top: 0;
}

.legacy-content .page-content > .sppb-section:last-child,
.legacy-content #sp-main-body:last-child,
.legacy-content section:last-child {
  margin-bottom: 0;
}

.legacy-content .sppb-section:has(.sppb-column-addons:empty):not(:has(img)):not(:has(p)):not(:has(h1)):not(:has(h2)):not(:has(h3)):not([data-background-image]) {
  display: none;
}

.legacy-content .sppb-addon-single-image,
.legacy-content .sppb-text-center {
  text-align: center;
}

.legacy-content .sppb-addon-single-image-container img,
.legacy-content .sppb-img-responsive {
  max-width: 100%;
  height: auto;
}

.legacy-content .sppb-text-right {
  text-align: right;
}

.legacy-content .sppb-addon-image-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.legacy-content .sppb-addon-image-content .sppb-image-holder {
  min-height: 320px;
}

.legacy-content .sppb-addon-image-content .sppb-image-holder img {
  width: 100%;
  height: clamp(320px, 36vw, 460px);
  object-fit: cover;
}

.legacy-content .sppb-addon-image-content > .sppb-container .sppb-row {
  display: block;
}

.legacy-content .sppb-addon-image-content .sppb-col-sm-6:empty {
  display: none;
}

.legacy-content .sppb-addon-image-content .sppb-content-holder {
  max-width: 560px;
}

.legacy-content .sppb-section[data-background-image] {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  min-height: clamp(280px, 36vw, 520px);
  background-image: var(--legacy-bg-image);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.legacy-content .sppb-section[data-background-image] .extracted-background-image {
  display: none;
  width: 100%;
  height: clamp(280px, 36vw, 520px);
  border-radius: 0;
  object-fit: cover;
}

.legacy-content .sppb-section[data-background-image] .sppb-row-overlay,
.legacy-content .sppb-section[data-background-image] .sppb-container-inner {
  display: none;
}

.legacy-content .inserted-parallax-band {
  margin-top: clamp(28px, 5vw, 58px);
  margin-bottom: clamp(28px, 5vw, 58px);
}

.legacy-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.legacy-content img.aktuality-image {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 18px 0 0;
}

.legacy-content [id] {
  scroll-margin-top: 180px;
}

.legacy-content .legacy-dash-list {
  display: grid;
  gap: 5px;
  margin: 8px 0 18px;
  padding-left: 1.2rem;
}

.legacy-content .legacy-dash-list li {
  margin: 0;
  padding-left: 0.2rem;
}

.legacy-content .sppb-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: clamp(14px, 3vw, 34px);
  align-items: end;
  margin: 24px 0 36px;
  padding: 0;
  list-style: none;
}

.legacy-content .sppb-gallery li {
  min-width: 0;
  margin: 0;
}

.legacy-content .sppb-gallery a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 150px;
}

.legacy-content .sppb-gallery img {
  display: block;
  width: 100%;
  max-height: 210px;
  border-radius: 0;
  object-fit: contain;
}

.legacy-content section:has(.legacy-accordion) {
  margin: 0;
}

.legacy-content .legacy-accordion {
  border-bottom: 1px solid var(--border);
}

.legacy-content .legacy-accordion summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 13px 0;
  color: #3c3540;
  cursor: pointer;
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  font-weight: 400;
  line-height: 1.2;
  list-style: none;
}

.legacy-content .legacy-accordion summary::-webkit-details-marker {
  display: none;
}

.legacy-content .legacy-accordion summary::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-top: 3px solid var(--brand);
  border-right: 3px solid var(--brand);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.legacy-content .legacy-accordion[open] summary::before {
  transform: rotate(135deg);
}

.legacy-content .legacy-accordion-body {
  padding: 0 0 28px 30px;
}

.legacy-content .sppb-btn,
.legacy-content .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 6px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  padding: 9px 14px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
}

.legacy-content .ba-gallery-grid,
.legacy-content .ba-gallery-content,
.legacy-content .ba-gallery .row-fluid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 12px;
}

.legacy-content .ba-gallery-items {
  display: block !important;
}

.legacy-content .ba-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.legacy-content .ba-caption,
.legacy-content .gallery-notification,
.legacy-content .lightbox-options,
.legacy-content .ba-pagination {
  display: none;
}

.gallery-page .gallery-section {
  margin: 0 0 clamp(34px, 5vw, 62px);
}

.gallery-page .gallery-section h2 {
  margin: 0 0 18px;
  color: var(--brand);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
}

.static-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 12px;
}

.static-gallery-item {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.static-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  object-fit: cover;
  transition: transform 160ms ease;
}

.static-gallery-item:hover img {
  transform: scale(1.04);
}

.contact-page-main {
  padding-bottom: 36px;
}

.contact-page {
  display: grid;
  gap: 28px;
}

.contact-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}

.contact-lead {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.5;
}

.contact-highlight-card,
.contact-info-card,
.contact-navigation-card,
.contact-team-grid > div {
  border: 1px solid var(--border);
  background: #fff;
  padding: 22px;
}

.contact-highlight-card {
  border-color: rgba(233, 81, 29, 0.32);
}

.contact-highlight-card h2,
.contact-info-card h2,
.contact-navigation-card h2,
.contact-team-section h2 {
  margin: 0 0 12px;
  color: var(--brand);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-info-card p,
.contact-navigation-card p,
.contact-team-grid p {
  margin: 0;
}

.contact-navigation-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
}

.contact-navigation-figure {
  margin: 0;
}

.contact-navigation-figure img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}

.contact-navigation-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.contact-page a {
  overflow-wrap: anywhere;
}

.contact-team-section {
  display: grid;
  gap: 16px;
}

.contact-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-team-grid h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.faq-section {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: clamp(30px, 4vw, 46px) 0;
}

.faq-heading {
  margin: 0 0 20px;
  color: var(--brand);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 900px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 13px 0;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary span {
  transform: rotate(135deg);
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: clamp(30px, 4vw, 46px) 0;
}

.contact-heading {
  max-width: 1120px;
  margin-bottom: 18px;
}

.contact-heading h2 {
  margin: 0 0 8px;
  color: var(--brand);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 48px;
  margin: 0 0 28px;
  border-top: 2px solid var(--brand);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 16px 24px;
}

.contact-trust-item {
  display: inline-flex;
  align-items: center;
}

.contact-trust-item strong {
  color: var(--brand-dark);
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 0;
}

.form-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfc6bd;
  border-radius: 0;
  padding: 11px 13px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a8a09a;
}

.form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.raw-message-field {
  display: none;
}

.form-error {
  margin: -2px 0 0;
  border: 1px solid #e0b2a2;
  padding: 9px 12px;
  background: #fff5f1;
  color: var(--brand-dark);
  font-weight: 500;
}

.form-actions {
  display: flex;
  justify-content: center;
}

.bot-field {
  display: none;
}

.home-footer {
  background: #3a3340;
  color: #ece6ec;
}

.home-footer-nav {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
  padding: 14px 24px;
  flex-wrap: wrap;
}

.home-footer-nav a {
  color: #ece6ec;
  font-size: 0.86rem;
  text-decoration: none;
  text-transform: uppercase;
}

.home-footer-nav a:hover {
  color: #f5b097;
}

.site-footer {
  background: #3a3340;
  color: #f5eee8;
  padding: 44px 0 28px;
}

.footer-inner {
  display: grid;
  gap: 22px;
  text-align: center;
}

.footer-top {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.footer-logo {
  width: 150px;
}

.site-footer p {
  margin: 0;
  color: #f5eee8;
  font-weight: 400;
  line-height: 1.7;
}

.site-footer a {
  color: #f5eee8;
}

.site-footer a:hover {
  color: #f5b097;
}

.footer-address-break {
  display: none;
}

.footer-nav {
  justify-content: center;
  gap: 12px 26px;
  max-width: 980px;
  padding: 2px 0 0;
  text-transform: uppercase;
}

.footer-nav a {
  color: #ece6ec;
  font-size: 0.82rem;
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: #c7b9ad;
  font-size: 0.82rem;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid #d8d2cf;
  border-right: 0;
  border-left: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -12px 34px rgba(24, 22, 20, 0.13);
  padding: 9px 18px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy strong {
  display: inline;
  margin: 0 8px 0 0;
  color: var(--text);
  font-weight: 600;
}

.cookie-copy p {
  display: inline;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.cookie-button {
  min-width: 0;
  border: 1px solid var(--brand-dark);
  border-radius: 0;
  padding: 8px 11px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.cookie-button.primary {
  background: var(--brand-dark);
  color: #fff;
}

.cookie-button.secondary {
  background: #fff;
  color: var(--brand-dark);
}

.cookie-settings-panel {
  margin: 0 0 28px;
  border: 1px solid var(--border);
  padding: 20px;
  background: #fbfaf8;
}

.cookie-settings-panel h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.cookie-settings-panel p {
  max-width: 760px;
  margin: 0 0 14px;
}

.cookie-inline-settings-button {
  border: 1px solid var(--brand-dark);
  border-radius: 0;
  background: var(--brand-dark);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 14px;
}

@media (max-width: 1120px) {
  .content-page .header-logo-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    min-height: 0;
    padding: 13px 16px 12px;
    border-bottom: none;
  }

  .content-page .header-menu-row {
    display: none;
  }

  .content-page .header-logo-actions {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .mobile-header-actions .mobile-contact-link {
    flex-shrink: 0;
  }

  .mobile-header-actions .language-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 7px;
    min-width: 0;
  }

  .mobile-header-actions .flag-image {
    width: 26px;
    height: auto;
  }

  .primary-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    width: auto;
  }

  .mobile-menu > summary {
    display: inline-flex;
    margin: 0;
    justify-content: center;
  }

  .mobile-menu[open] > summary {
    display: flex;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 12px 16px 16px;
    background: var(--bg);
    border-bottom: 1px solid #d8d2cf;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }

  .mobile-menu-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    padding: 10px 16px 12px;
    background: var(--bg);
    border-bottom: 1px solid #d8d2cf;
  }

  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 1.5vh, 20px);
  }

  .home-category {
    min-height: clamp(70px, 11vh, 140px);
    padding: clamp(12px, 1.8vh, 20px) 16px;
  }

  .home-logo {
    width: min(300px, 24vh, 82%);
    margin-bottom: clamp(12px, 2vh, 28px);
  }

  .header-actions {
    min-height: 64px;
    justify-content: flex-end;
  }

  .contact-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-page .site-header {
    background: transparent;
  }

  .home-page .mobile-menu > summary {
    border-color: rgba(255, 255, 255, 0.36);
    color: #fff;
  }

  .header-logo-row {
    gap: 9px;
    padding: 11px 16px 10px;
  }

  .brand img {
    width: min(230px, 74vw);
    max-height: 55px;
  }

  .mobile-header-actions {
    gap: 9px;
  }

  .mobile-header-actions .flag-image {
    width: 28px;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
    padding: 12px 16px 16px;
  }

  .home-page .mobile-nav {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(251, 250, 248, 0.98);
  }

  .home-page .header-menu-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .home-page .header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding: 0 4px;
    align-items: center;
  }

  .home-page .language-nav {
    margin-left: 0;
  }

  .home-page .home-contact-link {
    min-width: 0;
  }

  .home-page .language-nav a {
    padding: 3px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .form-grid,
  .form-grid.two,
  .footer-top,
  .contact-hero-panel,
  .contact-info-grid,
  .contact-navigation-card,
  .contact-team-grid {
    grid-template-columns: 1fr;
  }

  .footer-address-sep {
    display: none;
  }

  .footer-address-break {
    display: block;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .home-footer-nav {
    justify-content: flex-start;
    gap: 12px 18px;
    padding: 14px 16px;
  }

  .home-footer-nav a {
    font-size: 0.78rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-copy strong,
  .cookie-copy p {
    display: block;
  }

  .cookie-copy strong {
    margin: 0 0 2px;
  }

  .cookie-actions {
    width: 100%;
  }

  .main-inner {
    padding-top: 32px;
  }

  .page-title-block {
    margin-bottom: 28px;
    padding-bottom: 22px;
  }

  .legacy-content .sppb-row {
    grid-template-columns: 1fr;
  }

  .legacy-content [class*="sppb-col-md-"],
  .legacy-content [class*="sppb-col-sm-"] {
    grid-column: 1 / -1;
  }

  .legacy-content .sppb-addon-image-content {
    grid-template-columns: 1fr;
  }

  .legacy-content .sppb-addon-image-content .sppb-image-holder img,
  .legacy-content .sppb-section[data-background-image] .extracted-background-image {
    height: 260px;
  }

  .legacy-content .sppb-gallery {
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 14px;
  }

  .legacy-content .sppb-gallery a {
    min-height: 120px;
  }

  .legacy-content .sppb-gallery img {
    max-height: 160px;
  }

  .legacy-content .legacy-accordion summary {
    min-height: 52px;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.08rem;
  }

  .legacy-content .legacy-accordion-body {
    padding: 0 0 22px 22px;
  }

  .legacy-content .sppb-section[data-background-image] {
    min-height: 0;
    background-image: none;
  }

  .legacy-content .sppb-section[data-background-image] .extracted-background-image {
    display: block;
  }

  .home-hero {
    min-height: 0;
    align-items: flex-start;
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .home-hero-inner {
    grid-template-rows: none;
  }

  .home-logo {
    width: min(310px, 86%);
    margin-bottom: 32px;
  }

  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 12px;
  }

  .home-category {
    min-height: 116px;
    gap: 16px;
    padding: 18px 10px;
  }

  .home-category img {
    width: 50px;
    height: 50px;
  }

  .home-category span {
    font-size: 0.78rem;
  }
}
