html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Lexend Peta", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  ::-webkit-scrollbar {
    display: none;
  }
  * {
    scrollbar-width: none;
  }
}

p {
  font-family: sans-serif;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(1rem, 5vw, 40px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-top: 0px;
  padding-bottom: 5px;
  border-radius: 0 0 60px 60px;
}

.nav--scrolled .navLogo,
.nav--scrolled .navLinks a,
.nav--scrolled .navLinks a:not(.navCta) {
  color: #1a1a1a;
}

.nav--scrolled .navLinks a:not(.navCta)::after {
  background: #1a1a1a;
}

.nav--scrolled .navCta {
  border-color: rgba(0, 0, 0, 0.4);
}

.nav--scrolled .navCta:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.nav--scrolled .hamburgerBar {
  background: #1a1a1a;
}

.nav--scrolled .hamburgerBar {
  background: #1a1a1a;
}

.navLogo {
  font-size: clamp(1.5rem, 5vw, 4.0625rem);
  color: white;
  letter-spacing: 0.2em;
  font-weight: 300;
  padding-top: 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navLinks {
  display: flex;
  gap: 28px;
  align-items: center;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1001;
}

.hamburgerBar {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.3s ease;
}

.hamburger.open .hamburgerBar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open .hamburgerBar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburgerBar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@keyframes menuCardIn {
  from { opacity: 0; transform: translateY(-16px) scale(0.96); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0)     scale(1);    filter: blur(0px); }
}

@keyframes menuCardOut {
  from { opacity: 1; transform: translateY(0)     scale(1);    filter: blur(0px); }
  to   { opacity: 0; transform: translateY(-10px) scale(0.97); filter: blur(4px); }
}

@keyframes menuItemIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes menuItemOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(12px); }
}

.mobileMenu {
  display: none;
  position: fixed;
  top: 80px;
  left: 10px;
  right: 10px;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
  overflow: hidden;
  padding: 8px 0 16px;
  transform-origin: top right;
}

.mobileMenu.open {
  display: flex;
  animation: menuCardIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobileMenu.open .mobileMenuItem,
.mobileMenu.open .mobileMenuSub {
  opacity: 0;
  animation: menuItemIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobileMenu.open .mobileMenuItem:nth-child(1) { animation-delay: 0.08s; }
.mobileMenu.open .mobileMenuItem:nth-child(2) { animation-delay: 0.13s; }
.mobileMenu.open .mobileMenuItem:nth-child(3) { animation-delay: 0.18s; }
.mobileMenu.open .mobileMenuSub              { animation-delay: 0.22s; }
.mobileMenu.open .mobileMenuItem:nth-child(5) { animation-delay: 0.27s; }
.mobileMenu.open .mobileMenuItem:nth-child(6) { animation-delay: 0.32s; }

.mobileMenu.closing {
  display: flex;
  animation: menuCardOut 0.28s cubic-bezier(0.4, 0, 1, 1) 0.1s forwards;
}

.mobileMenu.closing .mobileMenuItem,
.mobileMenu.closing .mobileMenuSub {
  animation: menuItemOut 0.18s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.mobileMenu.closing .mobileMenuItem:nth-child(6) { animation-delay: 0s; }
.mobileMenu.closing .mobileMenuItem:nth-child(5) { animation-delay: 0.04s; }
.mobileMenu.closing .mobileMenuSub              { animation-delay: 0.06s; }
.mobileMenu.closing .mobileMenuItem:nth-child(3) { animation-delay: 0.08s; }
.mobileMenu.closing .mobileMenuItem:nth-child(2) { animation-delay: 0.10s; }
.mobileMenu.closing .mobileMenuItem:nth-child(1) { animation-delay: 0.12s; }


.mobileMenuNav {
  display: flex;
  flex-direction: column;
}

.mobileMenuItem {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 28px;
  text-decoration: none;
  color: #21221F;
}

.mobileMenuLabel {
  font-family: "Lexend Peta", sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
  position: relative;
  padding-bottom: 3px;
}

.mobileMenuLabel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0.8px;
  background: #21221F;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.mobileMenuItem:hover .mobileMenuLabel::after {
  transform: scaleX(1);
}

.mobileMenuNum {
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #888;
}

.mobileMenuSub {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 28px 6px;
  gap: 2px;
}

.mobileMenuSubItem {
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #888;
  text-decoration: none;
  padding: 5px 0;
}

@media (max-width: 1265px) {

  .navLogo {
    font-size: 1.25rem;
  }
  .navLinks {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav--scrolled {
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0 0 24px 24px;
  }
}

.navLinks a {
  text-decoration: none;
  color: white;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.navDropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  background: transparent;
  min-width: 140px;
  z-index: 200;
  flex-direction: column;
}

.navDropdown::before {
  content: '';
  position: absolute;
  inset: 12px 0 0 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: -1;
}

.navDropdownWrap:hover .navDropdown {
  display: flex;
}

.navDropdown a {
  display: block;
  padding: 10px 20px;
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #21221F !important;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
  text-align: center;
}

.navDropdown a:hover {
  background: rgba(0,0,0,0.05);
}

@keyframes ctaBounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(0.91); }
  65%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.navCta {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 8px 14px;
  border-radius: 12px;
  margin-left: auto;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.navCta:hover {
  background-color: #000;
  border-color: #000;
  color: white;
}

.navCta:active {
  animation: ctaBounce 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.navLinks a:not(.navCta) {
  position: relative;
  text-decoration: none;
  color: white;
  padding-bottom: 4px;
}

.navLinks a:not(.navCta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.8px;
  background: white;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.navLinks a:not(.navCta):hover::after {
  transform: scaleX(1);
}

.heroBackground {
  position: absolute;
  inset: 0;
  background: url("../assets/Images/FuturiscticBathroom.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero {
  border-radius: 0 0 280px 280px;
  position: relative;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(10, 12, 18, 0.55) 100%);
  z-index: 1;
}

.heroContent {
  color: white;
  flex: 0.75;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.heroContent h1 {
  font-size: clamp(1.75rem, 4.6vw, 3.75rem);
  letter-spacing: 0.17em;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.15;
  white-space: nowrap;
}

.heroContent p {
  margin: 0.75rem 0 0;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  opacity: 0.85;
  line-height: 1.6;
  white-space: nowrap;
  animation: heroTypeReveal 2s steps(68, end) 0.4s both;
}

@keyframes heroTypeReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 540px) {
  .hero {
    border-radius: 0 0 80px 80px;
    min-height: 100dvh;
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(10, 12, 18, 0.35) 100%
      ),
      url("/Assets/Images/Background/heroGif.gif");
    background-position: center;
    background-size: cover;
  }
  .heroVideo {
    display: none;
  }
  .heroContent {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
  }
  .heroContent h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.15;
    white-space: normal;
  }
  .heroContent p {
    margin-top: 0.2rem;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    opacity: 0.9;
    white-space: normal;
    animation: none;
    clip-path: none;
  }
}

.theWhat {
  padding: 80px 0 0;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.8s ease, transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.theWhat.visible {
  opacity: 1;
  transform: translateY(0);
}

.theWhatTop {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 200px 0;
  min-height: 340px;
}

@media (max-width: 1200px) {
  .theWhatTop {
    padding: 0px 180px;
  }
}

@media (max-width: 900px) {
  .theWhatTop {
    padding: 0 40px 40px;
    gap: 40px;
  }
}

.theWhatLeft h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0 0 38px;
  text-transform: uppercase;
}

.theWhatArrows {
  display: flex;
  gap: 10px;
}

@keyframes arrowPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.arrow {
  width: 70px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid #555;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.arrow:hover {
  background: #21221F;
  border-color: #21221F;
  color: #fff;
  transform: scale(1.08);
}

.arrow:active {
  animation: arrowPulse 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.theWhatLeft {
  flex: 2.5;
}

.theWhatRight {
  flex: 3;
  padding-top: 40px;
}

.slideTitle {
  font-weight: 600;
  font-family: "Lexend Peta";
  font-size: 0.9375rem;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.slideDesc {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
  max-width: 420px;
}

.theWhatImages {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.theWhatDots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 32px;
}

.theWhatDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.theWhatDot.active {
  background: #111;
}

@media (max-width: 600px) {
  .theWhat {
    padding: 48px 0 0;
  }
  .featureImg {
    border-radius: 12px !important;
  }
  .slideTitle {
    font-family: "Lexend Peta", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #21221F;
    font-weight: 200;
  }

  .theWhatTop {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 24px 32px;
  }

  .theWhatRight {
    padding: 1em 2em 1em 0;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .theWhatLeft h2 {
    font-size: 1.25rem;
    margin-bottom: 0;
    text-align: left;
    width: 100%;
  }

  .theWhatArrows {
    display: none;
  }

  .theWhatImages {
    height: 200px;
  }

  .theWhatDots {
    display: flex;
  }

}

.kataloog {
  padding: 80px 0 0;
}

.kataloogTitle {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.kataloogIntro {
  text-align: center;
  font-family: sans-serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 24px;
}

.kataloogIntroBtn {
  display: none;
  text-align: center;
  margin-bottom: 60px;
}

.kataloogNav {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.kataloogSelect {
  appearance: none;
  -webkit-appearance: none;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 40px 10px 20px;
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #21221F;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2321221F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: border-color 0.2s;
}

.kataloogSelect:focus {
  outline: none;
  border-color: #21221F;
}

.kataloogStage {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.kataloogStage:last-child {
  margin-bottom: 0;
}

@keyframes kataloogSlideIn {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

.kataloogImg.sliding {
  animation: kataloogSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.kataloogImgWrap {
  position: relative;
  display: inline-block;
  width: calc(100% - 640px);
}

.kataloogImg {
  display: block;
  width: 100%;
  height: 827px;
  object-fit: cover;
  border-radius: 0 16px 16px 0;
  transform: translateX(-60px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

.kataloogImg.revealed {
  transform: translateX(0);
  opacity: 1;
}

.kataloogCard {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: white;
  padding: 40px 48px 40px 80px;
  width: 700px;
  height: 500px;
  border-radius: 16px 0 0 16px;
  box-shadow: -16px 11px 26.7px 0 rgba(34, 33, 33, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Medium desktop */
@media (max-width: 1200px) {
  .kataloogImgWrap {
    width: calc(48% + 40px);
  }
  .kataloogImg {
    width: 100%;
    height: 620px;
  }
  .kataloogCard {
    width: 52%;
    height: 560px;
    padding: 32px 40px 32px 60px;
  }
  .kataloogName {
    font-size: 1.5rem;
  }
}

/* Large tablet */
@media (max-width: 1050px) {
  .kataloogCard {
    padding: 28px 32px 28px 48px;
  }
  .kataloogName {
    font-size: 1.25rem;
  }
  .kataloogFeatures li,
  .kataloogSpecs p {
    font-size: 0.875rem;
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .kataloogTitle {
    font-size: 3rem;
  }
  .kataloogStage {
    display: flex;
    flex-direction: column;
  }
  .kataloogImgWrap {
    width: 100%;
  }
  .kataloogImg {
    width: 100%;
    height: 360px;
  }
  .kataloogCard {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    padding: 32px 40px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .kataloogName {
    font-size: 1.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .kataloogFeatures li,
  .specRow {
    font-size: 1rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .specRow {
    flex-wrap: wrap;
    gap: 4px;
  }
  .kataloogBottom {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 540px) {
  .kataloogTitle {
    font-size: 1.75rem;
    margin-bottom: 28px;
    text-align: left;
    padding-left: 24px;
  }
  .kataloogImg {
    height: 260px;
  }
  .kataloogCard {
    padding: 24px 40px 24px 24px;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .kataloogName {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    font-size: 1.25rem !important;
  }
  .kataloogBottom {
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
  }
  .kataloogBottom .kataloogDownload {
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .kataloogCard .arrow {
    width: 48px;
    height: 34px;
    font-size: 0.875rem;
  }
  .kataloogDownload {
    padding: 8px 12px;
    letter-spacing: 0;
    transform: scale(0.85);
  }
  .kataloogStage {
    overflow-x: hidden;
  }
  .kataloogFeatures {
    width: 100%;
    box-sizing: border-box;
    padding-right: 24px;
  }
  .kataloogSpecs {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  
  .kataloogFeatures li,
  .kataloogSpecs p {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .specRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: 0.8125rem;
  }
  .specRow dd {
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
  }
}

.kataloogName {
  font-size: 1.75rem;
  font-family: "Lexend Peta", sans-serif;
  font-weight: 200;
  letter-spacing: 0.15em;
  margin: 0px 0 40px 0;
}

.kataloogSubtitle {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #333;
  margin: 0 0 10px 20px;
  text-transform: uppercase;
}

.kataloogFeatures {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 20px;
  height: 8.25rem;
  overflow: hidden;
}

.kataloogFeatures li {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
  font-family: sans-serif;
}

.kataloogSpecs {
  margin: 0 0 10px 20px;
  height: 8.25rem;
  overflow: hidden;
}

.kataloogSpecs p {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
  font-family: sans-serif;
  padding: 0;
  margin: 0;
}

.specRow {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.75rem;
  margin-left: 20px;

}

.specRow:first-child {
  border-top: 1px solid #eee;
}

.specRow dt {
  color: #777;
  font-weight: 300;
}

.specRow dd {
  margin: 0;
  color: #21221F;
  font-weight: 300;
}

.kataloogBottom {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap:20px
}

.kataloogArrows {
  display: flex;
  gap: 10px;
}

.kataloogDownload {
  display: none;
  background: #21221F;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: none;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.kataloogDownload:hover {
  opacity: 0.75;
}

.kataloogMorePhotos {
  background: #21221F;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.kataloogMorePhotos:hover {
  opacity: 0.75;
}

.kataloogMorePhotosMobile {
  display: none;
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: system-ui, sans-serif;
  color: #21221F;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translateX(-60px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, opacity 0.7s ease 0.15s, background 0.2s;
}

.kataloogMorePhotosMobile:hover {
  background: rgba(255, 255, 255, 1);
}

@keyframes mobilePhotoHint {
  0%   { transform: scale(1); }
  3%   { transform: scale(1.1); }
  6%   { transform: scale(1); }
  9%   { transform: scale(1.1); }
  12%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.kataloogImg.revealed ~ .kataloogMorePhotosMobile {
  transform: translateX(0);
  opacity: 1;
  animation: mobilePhotoHint 4s ease 0.9s infinite;
}

@media (max-width: 1265px) {
  .kataloogMorePhotosMobile {
    display: flex;
  }
}

@media (max-width: 800px) {
  .kataloogMorePhotos {
    display: none;
  }
}

/* ── KATALOOG BUBBLES ── */

.kataloogBubbles {
  position: absolute;
  top: 60px;
  left: 60px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.kataloogBubble {
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border-radius: 100px;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.kataloogBubble--warm { background: #B8AF9D; }
.kataloogBubble--cool { background: #8AA4B4; }

.kataloogImg.revealed ~ .kataloogBubbles .kataloogBubble {
  opacity: 1;
  transform: translateY(0);
}

.kataloogImg.revealed ~ .kataloogBubbles .kataloogBubble:nth-child(2) {
  transition-delay: 0.35s;
}

@media (max-width: 540px) {
  .kataloogBubbles {
    top: 16px;
    left: 16px;
    gap: 8px;
  }
  .kataloogBubble {
    font-size: 0.6rem;
    padding: 8px 14px;
  }
}

/* ── FUNCTIONS VIDEO ── */

.functionsVideo {
  padding: 80px clamp(24px, 6vw, 120px) 100px;
  position: relative;
}

.functionsVideo h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: #21221F;
  margin: 0 0 32px;
  text-align: center;
  text-transform: uppercase;
}

.functionsVideoWrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.functionsVideoWrap video {
  width: 100%;
  height: 66.667vh;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .functionsVideoWrap video {
    height: 50vw;
  }
}

@media (max-width: 540px) {
  .functionsVideo {
    padding: 48px 16px 60px;
  }
  .functionsVideo h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
  .functionsVideoWrap {
    border-radius: 16px;
  }
  .functionsVideoWrap video {
    height: 56vw;
  }
}

/* ── BRAND STATEMENT ── */

.brandStatement {
  text-align: center;
  padding: 80px 40px 60px;
  max-width: 820px;
  margin: 120px auto;
}

.brandStatementTitle {
  font-family: "Lexend Peta", sans-serif;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #21221F;
  line-height: 1.6;
  margin: 0 0 32px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.8s ease, transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.brandStatementDesc {
  font-family: sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.8s ease 0.5s, transform 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.brandStatement.visible .brandStatementTitle,
.brandStatement.visible .brandStatementDesc {
  opacity: 1;
  transform: translateY(0);
}

.brandMark {
  background: #CDC5BA;
  border-radius: 6px;
  padding: 2px 10px;
  font-style: normal;
}

.brandMarkSub {
  background: #E5DFD2;
  border-radius: 4px;
  padding: 1px 6px;
  font-style: normal;
}

@media (max-width: 800px) {
  .brandStatement {
    margin: 80px auto;
  }
  .brandStatementTitle {
    font-size: 1.6rem;
  }
}

@media (max-width: 540px) {
  .brandStatement {
    padding: 40px 24px 32px;
    margin: 60px auto;
  }
  .brandStatementTitle {
    font-size: 1.2rem;
  }
  .brandStatementDesc {
    font-size: 0.9rem;
  }
}

/* ── STATS ── */

.stats {
  display: flex;
  gap: 60px;
  padding: 150px 100px;
  background: #fff;
  align-items: center;
}

.statsGrid {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.statsRow {
  display: flex;
  gap: 12px;
  padding-right: 0;
}

.statCard {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  padding: 32px 36px 40px;
  transform: scale(0.92) translateY(16px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.statsRow .statCard {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.statCardTop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.statCard.visible {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.statsGrid:has(.statCard:hover) .statCard.visible {
  transform: scale(0.95) translateY(0);
}

.statsGrid:has(.statCard:hover) .statCard.visible:hover {
  transform: scale(1.04) translateY(-4px);
}

.statsPct {
  font-family: "Lexend Peta", sans-serif;
  font-size: 3.25rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #212121;
  flex-shrink: 0;
  line-height: 1;
}

.statsDesc {
  font-family: "Lexend Peta", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #21221F;
  margin: 0;
  line-height: 1.3;
}

.statsText {
  flex: 1;
}

.statsHeading {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #21221F;
  margin: 0 0 28px;
}

.statsBody {
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
  margin: 0;
  max-width: 360px;
}

@media (max-width: 1100px) {
  .stats {
    gap: 40px;
    padding: 60px 60px;
  }
  .statsPct {
    font-size: 2.5rem;
  }
  .statsHeading {
    font-size: 1.25rem;
  }
}

@media (max-width: 800px) {
  .stats {
    flex-direction: column;
    padding: 80px 32px;
    gap: 40px;
    background: none;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    border-radius: 80px 80px;
  }
  .statsGrid {
    flex: none;
    width: 100%;
    box-sizing: border-box;
  }
  .statsRow {
    box-sizing: border-box;
    width: 100%;
  }
  .statCard {
    box-sizing: border-box;
    min-width: 0;
    border-radius: 10px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease;
  }
  .statCard.visible {
    transform: translateY(0);
    opacity: 1;
  }
  .statCard,
  .statsText {
    text-align: left;
    align-items: flex-start;
  }
  .statCardTop {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .statCardTop .statsPct,
  .statCardTop .statsDesc {
    text-align: left;
    width: 100%;
  }
  .statsHeading,
  .statsBody,
  .statsPct,
  .statsDesc {
    text-align: left;
  }
  .statsText {
    padding: 80px 0 40px;
    width: 100%;
    box-sizing: border-box;
  }
    .statsDesc {
      font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
  .stats {
    padding: 40px 24px;
  }
  .statsRow {
    flex-direction: column;
  }
  .statCardTop {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .statsPct {
    font-size: 2.25rem;
  }
}


.faq {
  padding: 120px clamp(24px, 8vw, 200px);
}

.faqInner {
  display: flex;
  gap: clamp(40px, 6vw, 100px);
  align-items: flex-start;
}

.faqLeft {
  flex: 0 0 33.333%;
}

.faqLeft h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.15;
  margin: 0 0 40px;
  text-transform: uppercase;
}

.faqLeft p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
  font-weight: 300;
}

.faqRight {
  flex: 0 0 66.667%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 100px;
}

.faqItem {
  border-radius: 20px;
  background: transparent;
  border: 1px solid #21221F;
  overflow: hidden;
}

.faqQuestion {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 20px 28px;
  cursor: pointer;
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #21221F;
  text-align: left;
  gap: 16px;
}

.faqIcon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faqIcon::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #21221F;
  border-bottom: 1px solid #21221F;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faqItem.open .faqIcon {
  transform: rotate(180deg);
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              padding 0.35s ease;
  opacity: 0;
  padding: 0 28px;
}

.faqItem.open .faqAnswer {
  max-height: 500px;
  opacity: 1;
  padding: 0 28px 22px;
}

.faqAnswer p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #21221F;
  margin: 0 0 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.faqAnswer p:last-child {
  margin: 0;
}

@media (max-width: 900px) {
  .faqInner {
    flex-direction: column;
    gap: 40px;
  }
  .faq {
    padding: 80px clamp(24px, 5vw, 60px);
  }
  .faqLeft {
    flex: none;
    width: 100%;
  }
  .faqRight {
    flex: none;
    width: 100%;
    padding-top: 0;
    box-sizing: border-box;
  }
}

@media (max-width: 540px) {
  .faq {
    padding: 80px 20px;
  }
  .faqRight {
    padding-top: 0;
  }
  .faqLeft h2 {
    font-size: 1.5rem;
  }
  .faqQuestion {
    padding: 18px 20px;
    font-size: 0.75rem;
  }
  .faqAnswer {
    padding: 0 20px;
  }
  .faqItem.open .faqAnswer {
    padding: 0 20px 18px;
  }
}

.featureImg {
  position: absolute;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 250px 200px 250px;
}

.contactInner {
  display: flex;
  gap: 80px;
  align-items: stretch;
}

.contactLeft {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  max-width: 33.333%;
}

.contactHeading {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0;
  color: #21221F;
}

.typeLine::after {
  content: '|';
  opacity: 1;
  animation: typeCursor 0.7s step-end infinite;
}

.typeLine.done::after {
  display: none;
}

@keyframes typeCursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.contactLeftBottom {
  display: flex;
  gap: 60px;
  padding-top: 80px;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contactInfoLabel {
  font-family: sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #21221F;
  margin: 0;
}

.contactSocials {
  display: flex;
  gap: 16px;
}

.contactSocials a,
.contactInfoLink {
  font-family: sans-serif;
  font-size: 0.8125rem;
  color: #555;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.contactSocials a:hover,
.contactInfoLink:hover {
  color: #21221F;
}

.contactRight {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contactFormLabel {
  font-family: sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #21221F;
  margin: 0;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contactRow {
  display: flex;
  gap: 40px;
}

.contactField {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contactFieldFull {
  flex: none;
}

.contactInput {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  font-family: sans-serif;
  font-size: 0.9375rem;
  color: #21221F;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.contactInput::placeholder {
  color: #bbb;
}

.contactInput:focus {
  border-bottom-color: #8AA4B4;
}

.contactTextarea {
  resize: none;
  height: 80px;
  line-height: 1.6;
}

.contactSubmit {
  align-self: flex-start;
  background: #21221F;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.contactSubmit:hover {
  opacity: 0.75;
}

@media (max-width: 1100px) {
  .contact {
    padding: 80px 60px;
  }
  .contactInner {
    gap: 60px;
  }
}

@media (max-width: 800px) {
  .contact {
    padding: 80px 40px;
  }
  .contactInner {
    flex-direction: column;
    gap: 60px;
  }
  .contactLeft {
    max-width: 100%;
    width: 100%;
  }
  .contactRight {
    width: 100%;
  }
  .contactLeftBottom {
    padding-top: 40px;
  }
}

@media (max-width: 540px) {
  .contact {
    padding: 60px 24px;
  }
  .contactRow {
    flex-direction: column;
    gap: 28px;
  }
  .contactHeading {
    font-size: 2.5rem;
  }
  .contactLeftBottom {
    flex-direction: column;
    gap: 28px;
  }
}

/* ── GALLERY MODAL ── */

@keyframes galleryIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.galleryModal {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  flex-direction: column;
  overflow-y: auto;
}

.galleryModal.open {
  display: flex;
  animation: galleryIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.galleryHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(24px, 5vw, 80px);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.galleryTitle {
  font-family: "Lexend Peta", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #21221F;
}

.galleryClose {
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #21221F;
  background: transparent;
  border: none;
  cursor: pointer;
  padding-bottom: 3px;
  position: relative;
}

.galleryClose::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.8px;
  background: #21221F;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.galleryClose:hover::after {
  transform: scaleX(1);
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  padding: 40px clamp(24px, 5vw, 80px) 80px;
}

.galleryItem img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 540px) {
  .galleryGrid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 16px 60px;
  }
  .galleryItem img {
    height: 280px;
  }
}

/* ── FOOTER ── */
.footer {
  background: url("/Assets/Images/Background/footerBackground.png") center/cover no-repeat;
  border-radius: 280px 280px 0 0;
  margin-top: 0;
  overflow: hidden;
  position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(10, 12, 18, 0.55) 100%);
  z-index: 0;
}

.footerInner {
  padding: 48px 100px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footerTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footerLabel {
  font-family: sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.footerEmail {
  font-family: "Lexend Peta", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 200;
  letter-spacing: 0.05em;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footerEmail:hover {
  opacity: 0.7;
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 40px;
}

.footerNav {
  display: flex;
  gap: 60px;
}

.footerNavCol {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerNavCol a {
  font-family: "Lexend Peta", sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footerNavCol a:hover {
  color: white;
}

.footerRight {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footerSocials {
  display: flex;
  gap: 16px;
}

.footerSocial {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footerSocial:hover {
  color: white;
}

.footerCopy {
  font-family: sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .footerInner {
    padding: 60px 48px 40px;
    gap: 40px;
  }
  .footerTop {
    flex-direction: column;
    gap: 24px;
  }
  .footerBottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .footerRight {
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .footer {
    border-radius: 40px 40px 0 0;
    margin-top: 48px;
  }
  .footerInner {
    padding: 48px 28px 36px;
    gap: 36px;
  }
  .footerNav {
    flex-wrap: wrap;
    gap: 24px 40px;
  }
  .footerBottom {
    padding-top: 28px;
    gap: 28px;
  }
  .footerEmail {
    font-size: clamp(1.25rem, 6vw, 2rem);
  }
}