:root {
  --luxe-ink: #1f1c1a;
  --luxe-muted: #6f6760;
  --luxe-paper: #fbfaf7;
  --luxe-accent: #b9573f;
  --luxe-teal: #2c7772;
  --luxe-line: rgba(31, 28, 26, .12);
}

body {
  color: var(--luxe-ink);
  background: var(--luxe-paper);
}

.luxe-header {
  background: rgba(251,250,247,.96);
  border-bottom: 1px solid var(--luxe-line);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.luxe-topbar {
  background: var(--luxe-ink);
  color: rgba(255, 255, 255, .78);
  padding: 8px 0;
  font-size: 13px;
}

.luxe-topbar a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.luxe-topbar a:hover,
.luxe-topbar a:focus {
  color: #fff;
}

.luxe-topbar-contact {
  min-width: 0;
}

.luxe-topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.luxe-topbar-actions {
  flex-shrink: 0;
}

.luxe-social-link {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.luxe-language .vl-lang-pill {
  border-color: rgba(255, 255, 255, .22) !important;
  color: #fff !important;
}

.luxe-brand img {
  max-height: 70px;
  width: auto;
}

.luxe-contact,
.luxe-social {
  gap: 18px;
  align-items: center;
}

.luxe-contact span,
.luxe-contact a,
.luxe-social a {
  color: var(--luxe-muted);
  text-decoration: none;
  font-size: 14px;
}

.luxe-nav {
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(16px);
  min-height: 82px;
}

.luxe-menu .nav-link {
  color: var(--luxe-ink);
  font-weight: 700;
  padding: 9px 16px !important;
}

.luxe-menu .dropdown-menu {
  border: 1px solid var(--luxe-line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(251, 250, 247, .98);
  box-shadow: 0 24px 54px rgba(31, 28, 26, .14);
}

.luxe-menu .dropdown-menu .nav-link {
  color: var(--luxe-ink);
  white-space: nowrap;
  padding: 8px 12px !important;
}

.luxe-menu .dropdown-menu .nav-link:hover,
.luxe-menu .dropdown-menu .nav-link:focus {
  color: var(--luxe-accent);
}

.luxe-header .responsive-menu {
  position: relative;
  z-index: 1002;
}

@media (min-width: 992px) {
  .luxe-menu .dropdown-menu {
    display: block;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .luxe-menu .dropdown:hover > .dropdown-menu,
  .luxe-menu .dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .luxe-menu .dropdown-menu .dropdown-menu {
    left: 100%;
    top: -10px;
  }
}

@media (max-width: 991.98px) {
  .luxe-topbar {
    display: none;
  }

  .luxe-topbar .container {
    flex-wrap: wrap;
  }

  .luxe-topbar-contact,
  .luxe-topbar-actions {
    width: 100%;
    justify-content: center;
  }

  .luxe-topbar-contact {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .luxe-brand img {
    max-height: 58px;
  }

  .luxe-nav {
    min-height: 72px;
  }

  .luxe-header .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--luxe-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(31, 28, 26, .10);
  }

  .luxe-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(185, 87, 63, .18);
  }

  .luxe-header .responsive-menu,
  .luxe-header .slicknav_menu {
    display: none !important;
  }

  .luxe-nav .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--luxe-line);
    border-radius: 8px;
    background: rgba(251, 250, 247, .98);
    box-shadow: 0 20px 48px rgba(31, 28, 26, .12);
  }

  .luxe-menu {
    align-items: stretch !important;
  }

  .luxe-menu .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 14px;
    background: transparent;
  }

  .luxe-menu .dropdown.is-open > .dropdown-menu {
    display: block;
  }

  .luxe-menu .dropdown > .nav-link {
    position: relative;
    padding-right: 36px !important;
  }

  .luxe-menu .dropdown > .nav-link::after {
    content: "\f282";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform .2s ease;
  }

  .luxe-menu .dropdown.is-open > .nav-link::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

.luxe-btn,
.btn-default,
.btn-default.btn-highlighted,
.readmore-btn,
.vl-primary-btn3 {
  background: linear-gradient(135deg, var(--luxe-accent), #8d3f2f);
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(185, 87, 63, .24);
}

.btn-default:hover,
.readmore-btn:hover,
.vl-primary-btn3:hover {
  background: linear-gradient(135deg, var(--luxe-teal), #1f5d59);
  color: #fff !important;
}

.luxe-hero {
  position: relative;
  background: var(--luxe-paper);
  padding: 0;
  overflow: hidden;
}

.luxe-hero .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.luxe-hero .swiper-wrapper {
  align-items: stretch;
}

.luxe-hero .swiper-slide {
  height: auto;
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}

.luxe-hero .swiper-slide-active {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.luxe-hero .hero-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.luxe-hero .hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(255, 255, 255, .56);
  opacity: 1;
  transition: width .2s ease, background .2s ease;
}

.luxe-hero .hero-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--luxe-accent);
}

.luxe-hero-frame {
  width: 100%;
  margin: 0;
  position: relative;
  min-height: clamp(560px, 76vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: #ddd;
}

.luxe-hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luxe-hero-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,28,26,.16), rgba(31,28,26,.78));
}

.luxe-hero-panel {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 32px));
  text-align: center;
  color: #fff;
  padding: 92px 0 110px;
}

.luxe-hero-panel span,
.luxe-section-title span,
.luxe-about-copy span {
  color: #f1d0b9;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.luxe-hero-panel h1 {
  font-size: clamp(44px, 7vw, 92px);
  line-height: .95;
  margin: 14px 0 18px;
  color: #fff;
}

.luxe-hero-panel p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.luxe-hero-panel .luxe-btn {
  margin-top: 16px;
  position: relative;
  z-index: 3;
}

.luxe-services,
.luxe-about,
.luxe-featured {
  padding: 92px 0;
}

.luxe-services-dark,
.luxe-featured-dark,
.hero,
.dark-section {
  background:
    linear-gradient(135deg, rgba(31, 28, 26, .92), rgba(79, 55, 44, .86)),
    var(--luxe-ink);
}

.light-bg-section,
.our-blog,
.our-testimonials,
.our-services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(247, 241, 233, .72)),
    var(--luxe-paper);
}

.luxe-section-title {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.luxe-section-title h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.16;
  font-weight: 500;
  margin-top: 10px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.luxe-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.luxe-service-row {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--luxe-line);
  background: rgba(255,255,255,.82);
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 24px 70px rgba(31, 28, 26, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.luxe-service-row:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 87, 63, .28);
  box-shadow: 0 30px 86px rgba(31, 28, 26, .13);
}

.luxe-service-image {
  background: rgba(31, 28, 26, .06);
}

.luxe-service-image a {
  display: block;
  height: 100%;
  overflow: hidden;
}

.luxe-service-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.luxe-service-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 76px;
}

.luxe-service-copy h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.luxe-service-copy h3 a {
  color: var(--luxe-ink);
  text-decoration: none;
}

.luxe-service-copy p {
  color: var(--luxe-muted);
  margin: 0;
}

.luxe-service-action {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--luxe-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.luxe-about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.luxe-about-copy h2 {
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
  margin: 12px 0 20px;
}

.luxe-about-copy p {
  color: var(--luxe-muted);
  font-size: 18px;
}

.luxe-about-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.luxe-about-media blockquote {
  margin: 18px 0 0;
  padding: 22px;
  border-left: 4px solid var(--luxe-accent);
  background: rgba(255,255,255,.78);
}

.luxe-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.luxe-feature-list article {
  border: 1px solid var(--luxe-line);
  background: rgba(255,255,255,.84);
  border-radius: 8px;
  padding: 30px;
}

.luxe-feature-list i {
  color: var(--luxe-teal);
  font-size: 40px;
}

.luxe-footer {
  padding: 70px 0 26px;
  background: #fbfaf7;
  border-top: 1px solid var(--luxe-line);
}

.luxe-footer-main {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 40px;
}

.luxe-footer-logo {
  max-height: 68px;
  margin-bottom: 18px;
}

.luxe-footer a {
  color: var(--luxe-ink);
  text-decoration: none;
}

.luxe-footer address {
  color: var(--luxe-muted);
  margin: 0;
}

.luxe-footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.luxe-footer-contact-link i {
  color: var(--luxe-accent);
  font-size: 15px;
}

.luxe-footer a:hover,
.luxe-footer a:focus {
  color: var(--luxe-accent);
}

.luxe-footer h3 {
  color: var(--luxe-ink);
  font-size: 18px;
  margin: 0 0 8px;
}

.luxe-footer-nav,
.luxe-footer-contact,
.luxe-footer-social {
  display: grid;
  gap: 10px;
}

.luxe-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.luxe-footer-social a {
  width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--luxe-ink);
  box-shadow: 0 10px 24px rgba(31, 28, 26, .16);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.luxe-footer-social a:hover,
.luxe-footer-social a:focus {
  color: #fff;
  background: var(--luxe-accent);
  transform: translateY(-2px);
}

.seo-tags {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--luxe-line);
}

.seo-tags-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
}

.seo-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--luxe-ink);
  background: rgba(185, 87, 63, .10);
  border: 1px solid rgba(185, 87, 63, .18);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.seo-tag:hover,
.seo-tag:focus {
  color: #fff;
  background: var(--luxe-accent);
}

.luxe-footer-bottom {
  border-top: 1px solid var(--luxe-line);
  margin-top: 42px;
  padding-top: 18px;
  color: var(--luxe-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.luxe-footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.luxe-mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 99999;
  pointer-events: none;
  display: none;
}

.luxe-mobile-actions-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
}

.luxe-mobile-slot {
  min-width: 54px;
  display: flex;
  align-items: center;
}

.luxe-mobile-left {
  justify-content: flex-start;
}

.luxe-mobile-center {
  flex: 1;
  justify-content: center;
}

.luxe-mobile-right {
  justify-content: flex-end;
}

.luxe-mobile-actions a {
  pointer-events: auto;
  text-decoration: none;
}

.luxe-mobile-call,
.luxe-mobile-whatsapp {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .20);
  backdrop-filter: blur(8px);
}

.luxe-mobile-call {
  background: var(--luxe-accent);
}

.luxe-mobile-whatsapp {
  background: #25d366;
}

.luxe-mobile-lang {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(31, 28, 26, .86);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
  backdrop-filter: blur(8px);
}

.luxe-mobile-lang .vl-lang-pill {
  border-color: rgba(255, 255, 255, .24) !important;
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .luxe-about-grid,
  .luxe-footer-main {
    grid-template-columns: 1fr;
  }
  .luxe-footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .luxe-footer-bottom-links {
    justify-content: center;
  }
  .luxe-mobile-actions {
    display: block;
  }
  body {
    padding-bottom: 78px;
  }
  .luxe-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .luxe-feature-list {
    grid-template-columns: 1fr;
  }
  .luxe-hero-frame {
    min-height: 560px;
  }
}

@media (max-width: 767.98px) {
  .luxe-service-list {
    grid-template-columns: 1fr;
  }

  .luxe-hero-frame {
    min-height: 520px;
  }

  .luxe-hero-panel {
    padding: 72px 0 92px;
  }
}

.section-title h3,
.vl-section-title .subtitle,
.subtitle {
  color: var(--luxe-accent) !important;
  letter-spacing: 0;
}

.section-title h2,
.vl-section-title .title,
.service-content h3,
.post-item-content h2 {
  color: var(--luxe-ink);
}

.service-item,
.post-item,
.testimonial-item,
.vl-solution-box-wrap2,
.why-choose-box,
.page-cta-box {
  border: 1px solid var(--luxe-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 24px 70px rgba(31, 28, 26, .09);
}

.service-image img,
.post-featured-image img,
.hero-slider-image img {
  filter: saturate(1.08) contrast(1.03);
}

.icon-box,
.service-body .icon-box,
.why-choose-item .icon-box {
  color: var(--luxe-teal);
}

.footer,
.main-footer {
  background: #1f1c1a;
  color: rgba(255, 255, 255, .82);
}

/* Premium module polish */
.luxe-services,
.luxe-featured {
  position: relative;
  isolation: isolate;
}

.luxe-services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(185, 87, 63, .07), transparent 38%),
    radial-gradient(circle at 86% 14%, rgba(44, 119, 114, .10), transparent 28%);
  pointer-events: none;
}

.luxe-services-dark .luxe-section-title h2,
.luxe-featured-dark .luxe-section-title h2,
.luxe-services-dark .luxe-service-copy h3 a,
.luxe-featured-dark .luxe-feature-list h3 {
  color: #fff;
}

.luxe-services-dark .luxe-section-title,
.luxe-featured-dark .luxe-section-title,
.luxe-services-dark .luxe-service-copy p,
.luxe-featured-dark .luxe-feature-list p {
  color: rgba(255, 255, 255, .72);
}

.luxe-service-row {
  isolation: isolate;
}

.luxe-service-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--luxe-accent), var(--luxe-teal));
  opacity: 0;
  transition: opacity .24s ease;
}

.luxe-service-row:hover::before {
  opacity: 1;
}

.luxe-service-image {
  overflow: hidden;
}

.luxe-service-image img {
  transition: transform .45s ease, filter .45s ease;
}

.luxe-service-row:hover .luxe-service-image img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.luxe-service-action {
  transition: transform .2s ease, background .2s ease;
}

.luxe-service-row:hover .luxe-service-action {
  transform: translateX(3px);
  background: var(--luxe-teal);
}

.luxe-services-dark .luxe-service-row {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.luxe-premium-slider .swiper {
  overflow: hidden;
  padding: 4px 2px 62px;
}

.luxe-premium-slider .swiper-slide {
  height: auto;
}

.luxe-premium-slider .luxe-service-row {
  height: 100%;
}

.luxe-services-pagination {
  bottom: 8px !important;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.luxe-services-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(31, 28, 26, .28);
  opacity: 1;
}

.luxe-services-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 999px;
  background: var(--luxe-accent);
}

.luxe-services-blog .luxe-service-row {
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 241, 233, .78));
}

.luxe-feature-list article {
  height: 100%;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.luxe-feature-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 87, 63, .34);
  box-shadow: 0 26px 76px rgba(31, 28, 26, .13);
}

.luxe-featured-dark .luxe-feature-list article {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .13);
}

.luxe-featured-dark .luxe-feature-list i {
  color: #f1d0b9;
}

.luxe-services .service-item,
.luxe-services .post-item,
.our-services .service-item,
.our-blog .post-item {
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.luxe-services .service-item:hover,
.luxe-services .post-item:hover,
.our-services .service-item:hover,
.our-blog .post-item:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 87, 63, .34);
  box-shadow: 0 30px 84px rgba(31, 28, 26, .13);
}

.our-testimonials .testimonial-slider .swiper {
  padding: 4px 2px 58px;
}

.our-testimonials .testimonial-item {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--luxe-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 62px rgba(31, 28, 26, .08);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.our-testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 87, 63, .34);
  box-shadow: 0 26px 76px rgba(31, 28, 26, .13);
}

.our-testimonials .author-image img {
  max-height: 92px;
  width: auto;
  object-fit: contain;
  filter: grayscale(.15) saturate(.95);
}

/* Shared module polish: ServicesLocation + Gallery */
.kombi-service-areas,.theme-gallery{padding:86px 0;background:#fff}.kombi-areas-head,.theme-gallery-head{max-width:980px;margin:0 auto 46px;text-align:center}.kombi-areas-kicker,.theme-gallery-head span{display:inline-flex;align-items:center;gap:8px;margin-bottom:16px;padding:9px 18px;border-radius:999px;background:#f3f6f8;color:#33418d;font-size:17px;font-weight:800;line-height:1}.theme-gallery-head span i{font-size:18px}.kombi-areas-kicker i{font-size:26px;line-height:0}.kombi-areas-head h2,.theme-gallery-head h2{max-width:980px;margin:0 auto;color:#062f48;font-size:clamp(25px,3vw,34px);line-height:1.18;font-weight:900}.kombi-areas-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border:1px solid #dce5ec;border-radius:10px;overflow:hidden;background:#fff}.kombi-area-card{min-height:98px;display:flex;align-items:center;gap:18px;padding:16px 18px;border-right:1px solid #dce5ec;border-bottom:1px solid #dce5ec;background:#fff;color:#002f4c;text-decoration:none;transition:background .2s ease,transform .2s ease,box-shadow .2s ease}.kombi-area-card:nth-child(4n){border-right:0}.kombi-area-card:hover{position:relative;z-index:2;background:#f5fbff;transform:translateY(-2px);box-shadow:0 18px 42px rgba(8,77,132,.12)}.kombi-area-icon{width:62px;height:62px;flex:0 0 62px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:#3f478f;color:#fff;font-size:23px}.kombi-area-card strong{min-width:0;color:#002f4c;font-size:16px;line-height:1.35;font-weight:900}.theme-gallery-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}.theme-gallery-card{display:block;overflow:hidden;border:1px solid rgba(6,47,72,.12);border-radius:18px;background:#fff;text-decoration:none;box-shadow:0 22px 62px rgba(8,77,132,.09);transition:transform .2s ease,box-shadow .2s ease}.theme-gallery-card:hover{transform:translateY(-4px);box-shadow:0 28px 76px rgba(8,77,132,.14)}.theme-gallery-media{position:relative;display:block;aspect-ratio:4/3;overflow:hidden;background:#eef4f8}.theme-gallery-media img,.theme-gallery-hero img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}.theme-gallery-card:hover img,.theme-gallery-hero:hover img{transform:scale(1.045)}.theme-gallery-zoom{position:absolute;right:14px;top:14px;width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(255,255,255,.92);color:#0b6fae}.theme-gallery-caption{display:block;padding:16px 18px}.theme-gallery-caption strong{display:block;color:#062f48;font-size:16px;line-height:1.35}.theme-gallery-caption small,.theme-gallery-hero-caption small{display:block;margin-top:4px;color:#6a7b89;font-weight:700}.theme-gallery-carousel{overflow:hidden;border-radius:22px;box-shadow:0 28px 86px rgba(8,77,132,.14)}.theme-gallery-hero{position:relative;display:block;height:min(620px,58vw);min-height:360px;overflow:hidden;background:#0b2436;text-decoration:none}.theme-gallery-hero-caption{position:absolute;left:24px;right:24px;bottom:24px;max-width:560px;padding:18px 20px;border-radius:16px;background:rgba(255,255,255,.94);box-shadow:0 18px 48px rgba(0,0,0,.18)}.theme-gallery-hero-caption strong{display:block;color:#062f48;font-size:20px;line-height:1.3}.theme-gallery-control{top:50%;bottom:auto;width:48px;height:48px;margin:0 20px;border:0;border-radius:50%;background:#fff;color:#0b6fae;opacity:1;transform:translateY(-50%);box-shadow:0 14px 38px rgba(0,0,0,.18)}.theme-gallery-control i{font-size:22px}@media(max-width:991.98px){.kombi-areas-grid,.theme-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.kombi-area-card:nth-child(4n){border-right:1px solid #dce5ec}.kombi-area-card:nth-child(2n){border-right:0}.theme-gallery-hero{height:420px}}@media(max-width:575.98px){.kombi-service-areas,.theme-gallery{padding:58px 0}.kombi-areas-grid,.theme-gallery-grid{grid-template-columns:1fr}.kombi-area-card,.kombi-area-card:nth-child(2n),.kombi-area-card:nth-child(4n){border-right:0}.theme-gallery-hero{height:340px}.theme-gallery-hero-caption{left:14px;right:14px;bottom:14px}.theme-gallery-control{width:42px;height:42px;margin:0 10px}}
/* Gallery masonry + lightbox overrides */
.theme-gallery-masonry{columns:4 260px;column-gap:18px}.theme-gallery-tile{position:relative;width:100%;display:block;margin:0 0 18px;padding:0;break-inside:avoid;border:0;border-radius:18px;overflow:hidden;background:#eef4f8;cursor:pointer;box-shadow:0 20px 60px rgba(8,77,132,.11)}.theme-gallery-tile img{width:100%;height:auto;display:block}.theme-gallery-tile:nth-child(3n+1) img{aspect-ratio:4/5;object-fit:cover}.theme-gallery-tile:nth-child(3n+2) img{aspect-ratio:1/1;object-fit:cover}.theme-gallery-tile:nth-child(3n) img{aspect-ratio:5/3.7;object-fit:cover}.theme-gallery-overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;gap:10px;padding:18px;color:#fff;background:linear-gradient(180deg,transparent 35%,rgba(0,24,45,.78));opacity:0;transition:opacity .22s ease}.theme-gallery-overlay i{width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(255,255,255,.92);color:#0b6fae}.theme-gallery-overlay strong{font-size:16px;line-height:1.35;text-align:left}.theme-gallery-tile:hover .theme-gallery-overlay{opacity:1}.theme-gallery-hero{border:0;width:100%;padding:0;text-align:left}.theme-gallery-lightbox[hidden]{display:none}.theme-gallery-lightbox{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;padding:30px;background:rgba(1,14,26,.92)}.theme-gallery-lock{overflow:hidden}.theme-gallery-lightbox figure{max-width:min(1180px,92vw);max-height:88vh;margin:0;text-align:center}.theme-gallery-lightbox img{max-width:100%;max-height:78vh;border-radius:14px;box-shadow:0 30px 100px rgba(0,0,0,.42)}.theme-gallery-lightbox figcaption{margin-top:14px;color:#fff;font-weight:800}.theme-gallery-lightbox-close,.theme-gallery-lightbox-nav{position:absolute;border:0;border-radius:50%;background:#fff;color:#0b6fae;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 18px 48px rgba(0,0,0,.28)}.theme-gallery-lightbox-close{top:22px;right:22px;width:48px;height:48px}.theme-gallery-lightbox-nav{top:50%;width:54px;height:54px;transform:translateY(-50%)}.theme-gallery-lightbox-prev{left:24px}.theme-gallery-lightbox-next{right:24px}.theme-gallery-lightbox-nav i,.theme-gallery-lightbox-close i{font-size:22px}@media(max-width:575.98px){.theme-gallery-masonry{columns:1}.theme-gallery-lightbox{padding:18px}.theme-gallery-lightbox-prev{left:10px}.theme-gallery-lightbox-next{right:10px}.theme-gallery-lightbox-nav{width:44px;height:44px}.theme-gallery-lightbox-close{top:12px;right:12px;width:42px;height:42px}}
