/*
Theme Name: Nord Craft Solutions
Theme URI: https://nord-craft.no
Author: Nord Craft
Description: Custom WordPress theme for Nord Craft Solutions.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nord-craft
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #243F5A;
  --navy-dark: #1a2e42;
  --navy-light: #2e5070;
  --grey: #6E6E6E;
  --grey-light: #AEB4B9;
  --grey-bg: #F5F6F7;
  --white: #FFFFFF;
  --section-spacing: clamp(60px, 10vw, 100px);
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
}

/* WordPress Reset & Admin Bar Fixes */
img {
  max-width: 100%;
  height: auto;
}

body.admin-bar .nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }

  #wpadminbar {
    position: fixed !important;
  }
}

/* Navigation */
.nav {
  background: var(--navy);
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav-logo-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px; /* Space between icon and text */
}

.nav-logo span {
  color: var(--grey-light);
}

.nav-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  color: var(--grey-light);
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: color 0.2s;
  display: block;
}

.nav-links a:hover,
.nav-links .current-menu-item>a {
  color: white;
}

/* Desktop Dropdown Submenu */
.nav-links ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  padding: 24px;
  min-width: 250px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
  pointer-events: none;
}

.nav-links li.menu-item-has-children {
  padding-bottom: 20px;
  /* Expands hover area down to the menu */
  margin-bottom: -20px;
}

.nav-links li.menu-item-has-children:hover>ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links-wrap {
  margin-left: auto;
  margin-right: 32px;
}

/* Language Switcher & Mobile Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-lang {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-lang li {
  line-height: 0;
}

.nav-lang a {
  display: block;
  line-height: 0;
  transition: opacity 0.2s;
}

.nav-lang a:hover {
  opacity: 0.8;
}

.nav-lang img {
  width: 32px !important;
  height: auto !important;
  border-radius: 3px;
  display: block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.menu-toggle svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 130px 40px;
  gap: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

body.nav-open .mobile-nav {
  display: flex;
}

.mobile-nav.active {
  opacity: 1;
  transform: translateY(0);
}

body.nav-open {
  overflow: hidden !important;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-list li {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.mobile-nav-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Mobile Dropdown Submenu Adjustment */
.mobile-nav-list ul.sub-menu {
  margin-top: 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.mobile-nav-list ul.sub-menu li {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-nav-list ul.sub-menu a {
  font-size: 18px;
  color: rgba(174, 180, 185, 0.75);
}

.mobile-nav-list ul.sub-menu a:hover {
  color: var(--grey-light);
}

.mobile-nav-list a,
.mobile-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  transition: color 0.2s ease;
}

.mobile-nav-list a:hover,
.mobile-nav a:hover {
  color: white;
}

/* Hero Section Base */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, #355c7d 100%);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 40%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 35%);
}

/* Service & Generic Page Hero Overrides */
.hero-service {
  background: var(--navy);
  min-height: 480px;
}

.hero-service::before {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 50px);
}

.hero.hero-has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.hero-has-image::before {
  background: linear-gradient(180deg, rgba(16, 33, 51, 0.45), rgba(16, 33, 51, 0.76));
}

/* Push all content above background pseudo-elements so buttons are clickable */
.hero.hero-has-image>*,
.hero-service>*,
.hero>* {
  position: relative;
  z-index: 1;
}

/* Hero Elements */
.hero-eyebrow,
.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-top: -2px; /* Visual center adjustment */
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 64px);
  color: white;
  line-height: 1.05;
  margin-bottom: 12px;
  max-width: 950px;
}

.hero h1 em {
  font-style: normal;
  color: var(--grey-light);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 2vw, 20px);
  margin: 16px 0 40px;
  max-width: 580px;
  line-height: 1.5;
  font-weight: 600;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}

.btn-primary {
  background: white;
  color: var(--navy) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.8px;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.8px;
  padding: 16px 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* General Layout Elements */
.faq-section,
.about-section {
  padding: var(--section-spacing) 24px;
  scroll-margin-top: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Background Wrappers for Full-Width Sections */
.bg-wrap {
  width: 100%;
  clear: both;
}

.bg-wrap--grey {
  background: var(--grey-bg);
}

.bg-wrap--navy {
  background: var(--navy);
}

.section {
  padding: var(--section-spacing) 24px;
  scroll-margin-top: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 48px;
}

.section-title span {
  color: var(--grey-light);
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--grey);
  max-width: 800px;
  margin-bottom: 60px;
}

/* Service Grids */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: #eee;
  border: 1px solid #eee;
}

.service-card {
  background: white;
  padding: 40px 32px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  background: var(--grey-bg);
  transform: translateY(-4px);
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

/* Flagship Content */
.flagship-wrap {
  background: #102133;
  color: white;
  border-radius: 18px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  position: relative;
  overflow: hidden;
}

.flagship-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 600px;
  background-image: url('assets/images/pool_texture_fade.png');
  background-size: cover;
  background-position: bottom right;
  opacity: 0.6;
  mask-image: radial-gradient(circle at bottom right, black 0%, rgba(0, 0, 0, 0) 45%);
  -webkit-mask-image: radial-gradient(circle at bottom right, black 0%, rgba(0, 0, 0, 0) 45%);
  pointer-events: none;
  z-index: 0;
}

.flagship-wrap>div,
.secondary-flagship>div {
  position: relative;
  z-index: 1;
}

.flagship-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b8d6f2;
  margin-bottom: 12px;
  display: block;
}

.flagship-wrap h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.flagship-wrap p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  max-width: 560px;
}

.flagship-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.flagship-points div {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.demand-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #c9442d;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
}

.flagship-side {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 24px;
  align-self: center;
}

.flagship-side h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.flagship-side ul {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

/* Tiers */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 40px;
}

.tier-card {
  background: white;
  border: 1px solid #e6eaee;
  padding: 28px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(20, 34, 48, 0.08);
  border-color: #d4dce5;
}

.tier-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.tier-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.tier-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.65;
}

/* Feature Cards & Checklist */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
  align-items: stretch;
}

.feature-card {
  background: var(--grey-bg);
  padding: 32px;
  border-radius: 4px;
  border-top: 4px solid var(--navy);
  height: 100%;
}

.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.checklist-item svg,
.checklist-item:before {
  content: '✔';
  color: #25D366;
  flex-shrink: 0;
}

/* Signature Double-Tick Style (Blue & Green) */
.checklist-item.double-tick:before {
  content: '✔';
  color: var(--navy);
  margin-right: -8px;
}

.checklist-item.double-tick:after {
  content: '✔';
  color: #25D366;
  margin-right: 12px;
  order: -1;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 16px;
  font-weight: 900;
}

/* Why Section */
.why-section {
  background: var(--navy);
  width: 100%;
  padding: var(--section-spacing) 24px;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-top: 56px;
}

.why-item {
  border-left: 4px solid rgba(255, 255, 255, 0.1);
  padding-left: 24px;
  transition: border-color 0.3s;
}

.why-item:hover {
  border-color: white;
}

.why-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: white;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.why-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Gallery / Projects Base */
.projects-section {
  background: var(--grey-bg);
  width: 100%;
  padding: var(--section-spacing) 24px;
}

.projects-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
  min-height: 400px;
}

.gallery-item {
  aspect-ratio: 3/2;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

.gallery-item.has-image {
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.gallery-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 30, 43, 0.18), rgba(18, 30, 43, 0.76));
  z-index: 1;
}

.photo-category {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  z-index: 5;
  /* Higher than other overlays */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .photo-category {
  opacity: 1;
  visibility: visible;
  top: 45%;
  /* Slight rise-up effect */
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  font-size: 12px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

/* Portfolio Specific */
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.filter-chip {
  padding: 10px 14px;
  background: var(--grey-bg);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  border: none;
  cursor: pointer;
}

.filter-chip.active {
  background: var(--navy);
  color: white;
}

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

.portfolio-card {
  background: var(--grey-bg);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e4e7ea;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.portfolio-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1f3448, #355d81);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.portfolio-visual.has-image {
  background-size: cover;
  background-position: center;
}

.portfolio-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 33, 51, 0.12), rgba(16, 33, 51, 0.72));
}

.portfolio-visual-text {
  position: relative;
  z-index: 1;
}

.portfolio-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.portfolio-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  display: block;
  margin-bottom: 8px;
}

.portfolio-content h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 8px;
}

.portfolio-content p {
  font-size: 14px;
  color: var(--grey);
}

/* About Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-text p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat {
  background: var(--grey-bg);
  padding: 32px 24px;
  border-top: 4px solid var(--navy);
  transition: transform 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-light);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ Section */
.faq-section--full {
  background: var(--grey-bg);
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 32px;
  border-bottom: 1px solid #eee;
  transition: all 0.2s;
}

.faq-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item h4::before {
  content: 'Q:';
  color: var(--grey-light);
  font-size: 12px;
}

.faq-item p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  padding-left: 26px;
}

/* CTA Elements */
.cta-strip,
.cta {
  background: var(--navy-dark);
  padding: var(--section-spacing) 24px;
  text-align: center;
}

.cta-strip h2,
.cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  color: white;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-strip p,
.cta p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  font-size: 16px;
  max-width: 600px;
  margin-inline: auto;
}

/* Contact Section & Forms */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  scroll-margin-top: 100px;
}

.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  background: var(--grey-bg);
  padding: 12px 16px;
  border-radius: 4px;
  transition: background 0.2s;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: 14px;
  color: var(--grey);
}

.contact-detail-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form {
  background: var(--navy);
  padding: 48px;
  border-radius: 8px;
  color: white;
}

.contact-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: white;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: white;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.2s;
}

.form-field textarea {
  height: 120px;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form-wrap {
  background: var(--grey-bg);
  border: 1px solid #e6eaee;
  border-radius: 10px;
  padding: 28px;
}

.portfolio-lead-form {
  margin-top: 40px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form .full {
  grid-column: 1/-1;
}

.lead-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ced6de;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

.lead-form textarea {
  height: 110px;
  resize: vertical;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

#service-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23243F5A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 45px;
  cursor: pointer;
  background-color: white;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}

#service-select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(36, 63, 90, 0.1);
}

#service-select:invalid {
  color: rgba(36, 63, 90, 0.5);
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
}

.hero,
.why-section,
.cta-strip,
.contact-form,
.flagship-wrap,
.gallery-item,
.gallery-label,
.gallery-item h3,
.gallery-item p {
  color: white;
}

.btn-primary:visited {
  color: var(--navy);
}

.btn-outline:visited,
.cta-strip a,
.hero a,
.flagship-wrap a {
  color: white;
}

.tier-card:visited h3,
.tier-card:visited p,
.service-card:visited h3,
.service-card:visited p,
.portfolio-card:visited h3,
.portfolio-card:visited p {
  color: inherit;
}

/* Footer Revamp */
.footer {
  background: var(--navy-dark);
  padding: 80px 24px 40px;
  color: white;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  color: var(--white);
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--navy-light);
  opacity: 0.5;
}

.footer-col p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-col strong span {
  color: var(--grey-light);
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Responsive Queries */
@media(max-width:1024px) {

  .about-section,
  .contact-section {
    gap: 48px;
  }
}

@media(max-width:900px) {
  .flagship-wrap {
    grid-template-columns: 1fr;
  }

  .tier-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .nav {
    padding: 20px 24px;
  }

  .nav-lang img {
    width: 38px !important;
  }

  .nav-links-wrap {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .mobile-nav .nav-links ul.sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 20px 0 0 20px;
    display: flex;
    pointer-events: auto;
  }

  .hero-btns {
    flex-direction: column;
  }

  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Padding & Stacking Refinement */
  .flagship-points,
  .secondary-pills,
  .about-stats {
    grid-template-columns: 1fr !important;
  }

  .flagship-wrap,
  .secondary-flagship {
    padding: 32px 24px !important;
  }

  .service-card {
    padding: 24px !important;
  }

  .flagship-wrap .btn-primary,
  .secondary-flagship .btn-outline {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }
}

/* Single Project Layout Upgrade */
.section--wide {
  max-width: 1400px !important;
}

.project-wrap {
  margin-left: auto;
  margin-right: auto;
}

.project-content {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
  /* Dark Navy neutral */
}

.project-content h1,
.project-content h2,
.project-content h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.project-content p {
  margin-bottom: 1.8rem;
}

.project-content ul,
.project-content ol {
  margin-left: 1.5rem;
  margin-bottom: 2rem;
  list-style: disc outside;
}

.project-content li {
  margin-bottom: 0.8rem;
  padding-left: 10px;
}

/* Standard WordPress Gallery Styling */
.wp-block-gallery {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
  padding: 0 !important;
}

.wp-block-image {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.wp-block-image img {
  display: block;
  width: 100% !important;
  height: auto !important;
}

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

  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Trust Bar Highlight */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 50px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.trust-badge-icon {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trust-badge-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.trust-content {
  text-align: left;
}



.trust-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}

.trust-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
}

@media(max-width:768px) {
  .trust-badge {
    flex-direction: column;
    text-align: center;
  }

  .trust-content {
    text-align: center;
  }

  .trust-badge-icon {
    margin: 0 auto 16px;
  }
}

/* Flagship Page Badge */
.flagship-title-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

@media(max-width:768px) {
  .flagship-title-badge {
    margin-bottom: 16px;
  }
}

/* Secondary Flagship Styling */
.secondary-flagship {
  background: var(--grey-bg);
  border: 1px solid rgba(132, 143, 153, 0.1);
  padding: 60px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-top: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Secondary Highlights Grid */
.secondary-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.secondary-highlight-grid .secondary-flagship {
  margin-top: 0;
  grid-template-columns: 1fr;
  /* Stack internally for 50% width */
  padding: 40px;
  gap: 30px;
}

.secondary-highlight-grid .secondary-flagship .flagship-side {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
}

@media (max-width: 1024px) {
  .secondary-highlight-grid {
    grid-template-columns: 1fr;
  }
}

.secondary-flagship::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/wood_texture_fade.png');
  background-size: cover;
  background-position: bottom right;
  opacity: 0.6;
  mask-image: radial-gradient(circle at bottom right, black 0%, transparent 45%);
  -webkit-mask-image: radial-gradient(circle at bottom right, black 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.secondary-flagship.fachwerk-theme::before {
  background-image: url('assets/images/fachwerk_texture_front.png');
  opacity: 0.4;
  mask-image: radial-gradient(circle at bottom right, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at bottom right, black 0%, transparent 60%);
}

.secondary-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #848F99;
  display: block;
  margin-bottom: 20px;
}

.secondary-flagship h3 {
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.secondary-flagship p {
  color: #4A5568;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.secondary-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.secondary-pills div {
  background: rgba(16, 33, 51, 0.05);
  padding: 12px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
}

.secondary-flagship .flagship-side {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(132, 143, 153, 0.2);
}

.secondary-flagship .flagship-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.secondary-flagship .flagship-side li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

@media(max-width:1024px) {
  .secondary-flagship {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
}

/* Footprint Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 33, 51, 0.45);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 40px;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-overlay.active .lightbox-image {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 24px;
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.lightbox-caption h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.lightbox-caption a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.lightbox-caption a:hover {
  color: white;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: white;
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.lightbox-close:hover {
  transform: scale(1.1);
  background: var(--grey-bg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 10001;
  backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
    background: rgba(16, 33, 51, 0.3);
    /* Darker on mobile for visibility */
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  /* Sync Header Logo with Footer on Mobile */
  .nav-logo {
    font-size: 14px !important;
    gap: 6px;
  }
  
  /* Fix Header Spacing on Small Phones */
  @media (max-width: 480px) {
    .nav {
      padding: 0 15px !important;
    }
    
    .nav-logo-group {
      max-width: 140px;
    }
    
    .nav-tagline {
      display: none !important;
    }

    .nav-logo {
      font-size: 13px !important;
      white-space: nowrap;
    }
    
    .nav-lang img {
      width: 20px !important;
    }
  }

  /* Fix crammed Contact Page on Mobile */
  .contact-section {
    gap: 40px;
  }
}

.body-lock {
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .lightbox-overlay {
    padding: 20px;
  }

  .lightbox-image {}
}

/* Service Mosaic Grid — High Density Gallery */
.service-mosaic {
  column-count: 3;
  column-gap: 24px;
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .service-mosaic {
    column-count: 2;
    column-gap: 20px;
  }
}

@media (max-width: 600px) {
  .service-mosaic {
    column-count: 1;
  }
}

.mosaic-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--grey-bg);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.mosaic-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: saturate(0.95);
}

.mosaic-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mosaic-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 33, 51, 0.85) 0%, rgba(16, 33, 51, 0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}

.mosaic-overlay span {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.mosaic-item:hover .mosaic-overlay span {
  transform: translateY(0);
}
}
}