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

:root {
  --bg-main: #FFFFFF;
  --bg-surface: #FAFAFA; /* Clean cool white-grey surface, no beige */
  --bg-surface-2: var(--bg-surface); /* Modern cool grey, no beige */
  --accent-red: #DD200C; /* Requested red accent color */
  --accent-gold: #B79153; /* Requested gold accent color */
  --accent-gold-light: #CDA769;
  --text-light: #3B3B3B; /* Requested dark grey text */
  --text-muted: #7E7E7E; /* Clean modern muted text */
  --white: #ffffff;
  --border: rgba(59, 59, 59, 0.1);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --shadow-sm: 0 4px 12px rgba(59, 59, 59, 0.03);
  --shadow-md: 0 10px 30px rgba(59, 59, 59, 0.06);
  --shadow-lg: 0 20px 50px rgba(59, 59, 59, 0.08);

  --font-title: 'Plus Jakarta Sans', sans-serif;
  --font-sans: 'Inter', sans-serif;
  --font-serif: var(--font-title); /* Redundant fallback to ensure sans-serif globally */
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --section-padding: 120px 8%;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.92rem;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 500 !important;
  line-height: 1.25 !important;
  text-wrap: balance;
  letter-spacing: -0.01em !important;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.2rem) !important; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem) !important; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem) !important; }
h4 { font-size: clamp(0.95rem, 1.2vw, 1.05rem) !important; }

h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--accent-gold);
  font-weight: 500 !important;
}

a { text-decoration: none; color: inherit; }
a[href^="tel:"] { white-space: nowrap; }

img { max-width: 100%; display: block; }

/* ---- Layout ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px;
}

.section {
  padding: var(--section-padding);
  padding-left: 8% !important;
  padding-right: 8% !important;
  position: relative;
}

.section--dark {
  background-color: #222222;
  color: #ffffff;
}

.section--dark h2 {
  color: #ffffff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.section--dark .section-tag {
  color: var(--accent-gold);
}

.section-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 6%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

@media (min-width: 769px) {
  .nav {
    grid-template-columns: 1fr auto 1fr;
  }
  .nav__logo {
    justify-self: start;
  }
  .nav__links {
    justify-self: center;
  }
  .nav__cta {
    justify-self: end;
    display: block;
  }
  .mobile-cta-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  .nav {
    display: flex;
    justify-content: space-between;
  }
  .nav__cta {
    display: none;
  }
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm), 0 1px 0 var(--border);
  padding: 14px 6%;
}

.nav__logo img {
  height: 68px;
  transition: var(--transition);
}
.nav.scrolled .nav__logo img {
  height: 52px;
}

.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light); /* Dark gray links on modern light transparent nav */
  opacity: 0.85;
  transition: all 0.3s;
  position: relative;
  padding: 6px 0;
}

.nav__link:hover {
  opacity: 1;
  color: var(--accent-red);
}

.nav__link.active {
  opacity: 1;
  color: var(--accent-red);
}

.nav.scrolled .nav__link {
  color: var(--text-light);
}

.nav.scrolled .nav__link:hover, 
.nav.scrolled .nav__link.active {
  color: var(--accent-red);
}

/* ---- Navigation Dropdown ---- */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav__dropdown-arrow {
  width: 12px;
  height: 12px;
  color: inherit;
  opacity: 0.85;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s, opacity 0.3s;
}

.nav__dropdown:hover .nav__dropdown-arrow {
  transform: rotate(180deg);
  color: var(--accent-red);
  opacity: 1;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 0;
  list-style: none;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 10px 24px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  opacity: 0.75;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav__dropdown-link:hover, .nav__dropdown-link.active {
  opacity: 1;
  color: var(--accent-red);
  background: transparent;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: var(--font-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  height: 42px !important;
  padding: 0 24px !important;
  border-radius: 30px !important;
  transition: var(--transition) !important;
  cursor: pointer !important;
  border: 1.5px solid transparent;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 2px;
}

.nav__cta .btn svg,
.mobile-cta-only .btn svg {
  width: 12px;
  height: 12px;
}

.mobile-cta-only .btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
}

.btn--gold {
  background: var(--accent-red); /* Main CTA is now red */
  color: var(--white);
  border-color: var(--accent-red);
}
.btn--gold:hover {
  background: #C51B0A;
  border-color: #C51B0A;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(221, 32, 12, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}
.btn--outline:hover {
  background: var(--text-light);
  color: var(--white);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn--outline-gold:hover {
  background: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(183, 145, 83, 0.15);
}


.btn--red {
  background: var(--accent-red);
  color: var(--white);
  border-color: var(--accent-red);
}
.btn--red:hover {
  background: #C51B0A;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(221, 32, 12, 0.3);
}



/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.15) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 800px;
}

.hero__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent-gold);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid var(--accent-gold);
  border-radius: 30px; /* Modern rounded tag */
}

.hero__title {
  font-weight: 500 !important;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: normal;
}

.hero__title em {
  font-style: normal;
  color: var(--white);
  font-weight: 500 !important;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 560px;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Modern Split Hero ---- */
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero-split__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  border: 1px solid rgba(183, 145, 83, 0.2);
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(183, 145, 83, 0.05);
  margin-bottom: 32px;
  width: fit-content;
}

.hero-split__badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-gold);
}

.hero-split__title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-light);
  letter-spacing: normal;
}

.hero-split__title em {
  font-style: normal;
  color: var(--accent-gold);
  font-weight: 500;
}

.hero-split__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-split__cta {
  display: flex;
  gap: 16px;
}

.hero-split__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.visual-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.visual-detail {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: var(--bg-main);
  padding: 8px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.visual-detail img {
  width: 100%;
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 6px);
}

.visual-detail .detail-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  text-align: center;
  margin-top: 6px;
  display: block;
}

/* Responsive Modern Hero */
@media (max-width: 991px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .hero-split__badge {
    margin: 0 auto 32px;
  }
  .hero-split__subtitle {
    margin: 0 auto 32px;
  }
  .hero-split__cta {
    justify-content: center;
  }
  .hero-split__visual {
    justify-content: center;
    margin-top: 40px;
  }
  .visual-wrapper {
    max-width: 420px;
  }
  .visual-main {
    height: 440px;
  }
  .visual-detail {
    left: -20px;
    bottom: -20px;
    width: 150px;
    height: 150px;
  }
}

/* Subpage hero (smaller) */
.hero--sub {
  min-height: 50vh;
  align-items: flex-end;
  padding-bottom: 80px;
}

/* ---- USP Cards ---- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
}

.usp-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.usp-card:hover {
  background: var(--bg-surface);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.usp-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent-gold);
}

.usp-card__title {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--text-light);
}

.usp-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Service Grid ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card__icon, .service-card__icon-svg {
  width: 44px;
  height: 44px;
  color: var(--accent-gold);
  margin: 0 auto 20px;
  display: block;
  stroke-width: 1.5;
}

.service-card__title {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.service-card__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Kitchen World Cards ---- */
.world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.world-grid--3cols {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

.world-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  cursor: pointer;
}

.world-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.world-card:hover .world-card__img { transform: scale(1.06); }

.world-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 30px 15px;
}

.world-card__label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 10px;
  white-space: nowrap;
}

.world-card__title {
  font-size: clamp(1.0rem, 1.4vw, 1.25rem) !important;
  font-family: var(--font-title);
  font-style: normal;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 20px;
  word-wrap: break-word;
  hyphens: auto;
}

.world-card__link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.world-card:hover .world-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Brand Logos Slider ---- */
.brands-section {
  background: var(--bg-surface);
  padding: 70px 8%;
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  align-items: center;
  justify-items: center;
  max-width: 960px;
  margin: 48px auto 0;
}

.brand-item {
  color: var(--text-muted);
  opacity: 0.55;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item:hover {
  color: var(--text-light);
  opacity: 1;
  transform: scale(1.05);
}

.brand-item svg.nolte-logo rect {
  transition: fill 0.3s;
}
.brand-item:hover svg.nolte-logo rect {
  fill: #000000;
}

@media (max-width: 900px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

.brand-category-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 28px;
}

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-title);
  font-size: 5rem;
  color: var(--accent-gold);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 32px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 28px;
  font-style: normal;
}

.testimonial-card__author {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.testimonial-card__location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  overflow: visible !important;
  text-align: center;
  max-width: 1200px !important;
  width: calc(100% - 40px) !important;
  margin: 80px auto !important;
  padding: 56px 40px !important;
  background: linear-gradient(135deg, #CDA769 0%, #B79153 50%, #9B773B 100%) !important;
  border: none !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-lg);
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3000px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  z-index: 1;
}

.cta-section .hero-full__overlay {
  display: none !important;
}

.cta-section__title {
  font-style: normal;
  font-weight: 500 !important;
  color: var(--white) !important;
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
}

.cta-section__title em {
  color: var(--white) !important;
  font-style: normal;
  font-weight: inherit !important;
}

.cta-section .section-tag {
  color: var(--white) !important;
  opacity: 0.9;
}

.cta-section__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-section p:not(.cta-section__sub) {
  color: rgba(255, 255, 255, 0.8) !important;
}

.cta-section .btn--gold {
  background: transparent !important;
  color: var(--white) !important;
  border: 1.5px solid var(--white) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

.cta-section .btn--gold:hover {
  background: var(--white) !important;
  color: var(--accent-gold) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15) !important;
}

.cta-section .btn--outline {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
}

.cta-section .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px);
}

.cta-section__title br {
  display: inline-block;
  width: 0.25em;
  content: "";
}

.cta-section__kitchen {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto !important;
  height: 90px !important;
  pointer-events: none;
  opacity: 0.35;
  transform: none !important;
  mix-blend-mode: normal !important;
  filter: brightness(0) invert(1) !important; /* Pure white */
}

/* ---- General Fineline Decoration ---- */
.fineline-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}
.fineline-decor__line {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3000px;
  height: 1px;
  background: var(--border);
  opacity: 0.35;
}
.fineline-decor__kitchen {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  opacity: 0.25;
}





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

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

.gallery-grid--masonry {
  columns: 3;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
  display: block;
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.8), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ---- Text + Image Split ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.split-section__content {
  padding: 80px 8%;
}

.split-section__image {
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
}

.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }

/* ---- Reveal Animation ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-surface);
  padding: 80px 8% 40px;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
}

.footer__title {
  font-size: 0.62rem !important;
  text-transform: uppercase;
  letter-spacing: 0.35em !important;
  color: var(--accent-gold);
  margin-bottom: 24px;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__title-icon {
  flex-shrink: 0;
  color: var(--accent-gold);
  width: 14px;
  height: 14px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer__link:hover { color: var(--accent-gold); }

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}

.footer__social-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ---- Burger Nav (Mobile) ---- */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--text-light);
  z-index: 2000;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__burger.open { color: var(--text-light) !important; }

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s;
  z-index: 999;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--accent-gold);
  color: var(--white);
  border-color: var(--accent-gold);
}

/* ---- Sticky Mobile CTA ---- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.sticky-cta .btn { width: 100%; justify-content: center; }

/* ---- Impressum / Datenschutz ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.legal-content h3 {
  color: var(--accent-gold);
  margin: 32px 0 12px;
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.legal-content p, .legal-content li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul { padding-left: 20px; }

.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 60px 0;
}

/* ---- Kontakt Page ---- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.kontakt-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.kontakt-info-item__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.kontakt-info-item__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.kontakt-info-item__value {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.calendly-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.calendly-box:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--text-light);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  color: var(--accent-gold);
  font-size: 1.4rem;
  font-family: var(--font-title);
  font-weight: 300;
  transition: transform 0.3s;
}

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

.faq-item p {
  padding-top: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- Minimal FAQ Line Style ---- */
.faq-line {
  border-top: 1px solid var(--border);
}
.faq-line:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-line summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  transition: color 0.2s;
}
.faq-line summary::-webkit-details-marker { display: none; }
.faq-line summary:hover { color: var(--accent-gold); }
.faq-line summary span:first-child {
  flex: 1;
  padding-right: 24px;
}
.faq-line__icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent-gold);
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-line[open] .faq-line__icon {
  transform: rotate(45deg);
}
.faq-line p {
  padding: 0 0 28px 0;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  :root { --section-padding: 80px 5%; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr; gap: 16px; }
  .split-section { grid-template-columns: 1fr !important; gap: 40px !important; }
  .split-section__image { min-height: 350px; }
  .kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .world-grid { grid-template-columns: repeat(2, 1fr); }
  .world-grid--3cols { grid-template-columns: repeat(2, 1fr); }
}

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

@media (max-width: 768px) {
  .nav__burger { display: flex !important; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 40px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 60px 40px;
    transition: right 0.5s cubic-bezier(0.16,1,0.3,1);
    overflow-y: auto;
  }

  .nav__links.open { right: 0; }
  
  .nav__link {
    font-size: 1rem;
    color: var(--text-light) !important;
  }
  
  .nav__dropdown-arrow {
    color: var(--text-light) !important;
  }

  /* Mobile Dropdown styles */
  .nav__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 8px 0 0 16px;
    width: 100%;
    text-align: left;
  }
  
  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }
  
  .nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .nav__dropdown-arrow {
    transition: transform 0.3s ease;
  }
  
  .nav__dropdown.open .nav__dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav__dropdown-link {
    padding: 8px 12px;
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.75;
  }

  .nav.scrolled .nav__burger {
    color: var(--text-light);
  }

  body.menu-open { overflow: hidden; }

  .world-grid { grid-template-columns: 1fr; }
  .world-grid--3cols { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__title { font-size: 2.4rem; }
  .back-to-top { bottom: 84px; }
  .calendly-box { padding: 24px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .container { padding: 0 15px; }
  .footer { text-align: center; }
  .footer__grid > div { display: flex; flex-direction: column; align-items: center; }
  .footer__social { justify-content: center; }
  .footer__list { align-items: center; padding-left: 0; }
  .footer__title { justify-content: center; }
  .footer__brand-text { margin-top: 12px; }
}

@media (max-width: 500px) {
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; }
}

/* ---- Inspirations-Galerie ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.gallery-grid--masonry {
  column-count: 1;
  column-gap: 24px;
}

@media (min-width: 768px) {
  .gallery-grid--masonry {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .gallery-grid--masonry {
    column-count: 3;
  }
}

.gallery-grid--masonry .gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 59, 59, 0.7) 0%, rgba(59, 59, 59, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item__overlay span {
  color: #FFFFFF;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item--large {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 240px;
  }
  .gallery-item--large, .gallery-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}

/* ==========================================================================
   Premium Refinements: Full Hero, Brand Slider, & Steps Timeline
   ========================================================================== */

/* Full-Bleed Hero */
.hero-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 100px;
}

/* Premium Subpage Hero */
.hero-premium-sub {
  position: relative;
  height: 60vh;
  min-height: 480px;
  max-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 80px;
}
.hero-premium-sub .hero-full__content {
  max-width: 840px;
}
.hero-premium-sub .hero-full__title {
  white-space: nowrap;
}
@media (max-width: 576px) {
  .hero-premium-sub .hero-full__title {
    white-space: normal;
  }
}
  .hero-premium-sub .hero-full__title {
    margin-bottom: 16px;
  }
.hero-premium-sub .hero-full__subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  margin-bottom: 32px;
}

.hero-full__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(59, 59, 59, 0.4) 0%, rgba(18, 18, 18, 0.75) 100%);
  z-index: 1;
}

.hero-full__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-full__content {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.hero-full__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white); /* White text on subpages */
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 28px;
}

.hero-full__badge .dot {
  width: 6px;
  height: 6px;
  background-color: var(--white); /* White dot on subpages */
  border-radius: 50%;
}

/* Gold text and dot on the homepage badge */
.hero-full .hero-full__badge {
  color: var(--accent-gold);
}
.hero-full .hero-full__badge .dot {
  background-color: var(--accent-gold);
}

.hero-full__title {
  font-family: var(--font-title);
  line-height: 1.15;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: normal;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-full__title em {
  font-family: var(--font-title);
  font-style: normal;
  color: var(--white);
}

.hero-full__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin-bottom: 44px;
  max-width: 720px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5), 0 1px 5px rgba(0, 0, 0, 0.4);
}

.hero-full__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Secondary White Outline Button */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--text-light);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Infinite Brand Marquee Slider */
.brand-slider {
  width: 100%;
  overflow: hidden;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  position: relative;
}

.brand-slider::before,
.brand-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-surface) 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-surface) 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-slider__track {
  display: flex;
  width: calc(240px * 16);
  animation: brandMarqueeScroll 30s linear infinite;
}

.brand-slide {
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-light);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.brand-slide img {
  max-height: 38px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(60%);
  transition: all 0.3s ease;
}

.brand-slide:hover {
  opacity: 1;
}

.brand-slide:hover img {
  filter: grayscale(0%) opacity(100%);
}

@keyframes brandMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-240px * 8)); }
}

/* Steps Timeline */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.timeline-step {
  position: relative;
  padding-top: 24px;
  border-top: 1.5px solid var(--border);
  transition: var(--transition);
  text-align: left;
}

/* Small gold dot on the line above each step */
.timeline-step::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  transition: var(--transition);
}

.timeline-step:hover {
  border-top-color: var(--accent-gold);
}

.timeline-step:hover::before {
  transform: scale(1.5);
  background-color: var(--accent-gold);
}

.timeline-step__num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
  transition: var(--transition);
}

.timeline-step:hover .timeline-step__num {
  transform: translateY(-2px);
  color: var(--accent-gold);
}

.timeline-step__title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: normal;
}

.timeline-step__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
}

@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline-step {
    padding-top: 0;
    padding-left: 28px;
    border-top: none;
    border-left: 1.5px solid var(--border);
  }
  .timeline-step::before {
    top: 0;
    left: -4.5px;
  }
  .timeline-step:hover {
    border-left-color: var(--accent-gold);
  }
  .timeline-step__num {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .hero-full {
    min-height: 82vh;
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .hero-full__cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
}

/* Homepage navigation overrides when transparent (not scrolled) */
.has-hero-nav .nav:not(.scrolled) .nav__link {
  color: var(--white);
  opacity: 0.95;
}

.has-hero-nav .nav:not(.scrolled) .nav__link:hover {
  color: var(--accent-red);
  opacity: 1;
}

.has-hero-nav .nav:not(.scrolled) .nav__dropdown-toggle {
  color: var(--white);
}

.has-hero-nav .nav:not(.scrolled) .nav__dropdown-arrow {
  stroke: var(--white);
}

.has-hero-nav .nav:not(.scrolled) .nav__dropdown-menu {
  background: var(--bg-main);
}

.has-hero-nav .nav:not(.scrolled) .nav__dropdown-link {
  color: var(--text-light);
}

.has-hero-nav .nav:not(.scrolled) .nav__logo img {
  filter: brightness(0) invert(1);
}

.has-hero-nav .nav:not(.scrolled) .nav__burger {
  color: var(--white);
}

/* ==========================================================================
   Lightbox Carousel Styles
   ========================================================================== */

body.lightbox-open {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-img.active {
  opacity: 1;
  transform: scale(1);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  z-index: 2010;
}

.lightbox-close:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
  transform: rotate(90deg);
}

/* Nav Buttons */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  z-index: 2010;
}

.lightbox-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* Bottom info: caption & counter */
.lightbox-info {
  margin-top: 24px;
  text-align: center;
  color: var(--white);
  max-width: 600px;
  z-index: 2010;
  pointer-events: none;
}

.lightbox-caption {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-caption.active {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-counter {
  font-family: var(--font-title);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Responsiveness */
@media (max-width: 768px) {
  .lightbox-wrapper {
    padding: 20px;
  }
  .lightbox-btn {
    width: 44px;
    height: 44px;
    bottom: 20px;
    top: auto;
    transform: none;
  }
  .lightbox-prev {
    left: calc(50% - 60px);
  }
  .lightbox-next {
    right: calc(50% - 60px);
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
  }
  .lightbox-info {
    margin-top: 16px;
    margin-bottom: 80px; /* space for buttons at bottom */
  }
}




/* ---- Bento Gallery ---- */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 20px;
}
.gallery-bento .gallery-item { 
  margin-bottom: 0; 
  border-radius: var(--radius-lg); 
}
.gallery-bento .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-bento .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-bento .gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-bento .gallery-item:nth-child(3) { grid-column: span 1; }
.gallery-bento .gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-bento .gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-bento .gallery-item:nth-child(6) { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-bento .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-bento .gallery-item:nth-child(2) { grid-column: span 2; }
  .gallery-bento .gallery-item:nth-child(3) { grid-column: span 1; }
  .gallery-bento .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-bento .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-bento .gallery-item:nth-child(6) { grid-column: span 1; }
}

.partner-logo {
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}
.partner-logo:hover,
.partner-card:hover .partner-logo {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}
.partner-item:hover .partner-logo {
  opacity: 1;
  filter: grayscale(0%);
}

/* Studio page chips styling with hover effect */
.studio-chip {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: default;
}

.studio-chip:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-2px);
}

/* Studio page contact & location editorial grid */
.studio-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.studio-contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.studio-contact-right {
  border-left: 1px solid var(--border);
  padding-left: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .studio-contact-grid {
    gap: 48px;
  }
  .studio-contact-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 48px;
  }
}

/* Booking Date Cards (Contact Page Mockup widget) */
.booking-date-card {
  border: 1px solid var(--border);
  padding: 14px 6px;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  background: var(--bg-surface);
  transition: var(--transition);
}

.booking-date-card:hover {
  border-color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-2px);
}

.booking-date-card__day {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

.booking-date-card__num {
  font-size: 1.2rem;
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--text-light);
  margin: 2px 0;
}

.booking-date-card__status {
  font-size: 0.65rem;
  color: #2ecc71;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.booking-date-card__dot {
  width: 5px;
  height: 5px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 480px) {
  .booking-date-card {
    padding: 10px 4px;
  }
  .booking-date-card__num {
    font-size: 1.05rem;
  }
  .booking-date-card__status {
    font-size: 0.6rem;
    gap: 2px;
  }
  .booking-date-card__dot {
    width: 4px;
    height: 4px;
  }
}




/* ---- Stats Grid & Cards ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  text-align: center;
}
.stats-item {
  padding: 40px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stats-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stats-number {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-family: var(--font-title);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.stats-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---- Steps Grid (Kontakt) ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    background: transparent;
    overflow: visible;
  }
  .steps-grid > div {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
  }
}

/* ---- Features Grid (Hauswirtschaftsraum) ---- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 36px;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---- List Stacking and Gold Numbers (Moderne/Weitere Küchen) ---- */
.list-num {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-gold) !important;
  line-height: 1;
  flex-shrink: 0;
}
.split-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 500px) {
  .split-feature-item {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .btn {
    white-space: normal !important;
    height: auto !important;
    min-height: 42px !important;
    padding: 10px 20px !important;
    text-align: center;
  }
}

/* ---- Carousel Arrow Re-styling for Kundenprojekte ---- */
@media (min-width: 769px) {
  /* Let's reposition arrows slightly outward or make them highly visible */
  .carousel-btn {
    background: var(--bg-main) !important;
    border: 1px solid var(--accent-gold) !important;
    color: var(--accent-gold) !important;
  }
  .carousel-btn:hover {
    background: var(--accent-gold) !important;
    color: var(--white) !important;
  }
}

@media (max-width: 768px) {
  .carousel-section {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .carousel-track-wrapper {
    width: 100% !important;
  }
  .carousel-btn {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    display: inline-flex !important;
  }
  .carousel-nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 24px !important;
    width: 100% !important;
  }
  .carousel-dots {
    margin-top: 0 !important;
  }
  .carousel-track .carousel-item {
    flex: 0 0 calc(100% - 16px) !important;
  }
}

/* ---- Bento Gallery Responsive Image Spacing/Stacking ---- */
@media (max-width: 768px) {
  .gallery-bento {
    grid-template-columns: 1fr !important;
    grid-auto-rows: minmax(240px, auto) !important;
    gap: 16px !important;
  }
  .gallery-bento .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 250px !important;
  }
}


/* ---- Light CTA Section Modifier ---- */
.cta-section--light {
  background: var(--bg-main) !important;
  color: var(--text-light);
  border: 1px solid var(--border) !important;
}
.cta-section--light .cta-section__title {
  color: var(--text-light) !important;
}
.cta-section--light .cta-section__title em {
  color: var(--accent-gold) !important;
}
.cta-section--light .section-tag {
  color: var(--accent-gold) !important;
  opacity: 1;
}
.cta-section--light .btn--gold {
  background: var(--accent-red) !important;
  color: var(--white) !important;
  border-color: var(--accent-red) !important;
}
.cta-section--light .btn--gold:hover {
  background: #C51B0A !important;
  border-color: #C51B0A !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(221, 32, 12, 0.25) !important;
}
.cta-section--light .btn--outline {
  background: transparent !important;
  color: var(--text-light) !important;
  border-color: var(--text-light) !important;
}
.cta-section--light .btn--outline:hover {
  background: var(--text-light) !important;
  color: var(--white) !important;
  border-color: var(--text-light) !important;
}

/* Showroom layout with dark map and middle divider line */
.showroom-grid {
  display: grid;
  grid-template-columns: 0.95fr 120px 1fr;
  align-items: center;
}

.showroom-divider {
  display: flex;
  justify-content: center;
  height: 300px;
}

@media (max-width: 868px) {
  .showroom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showroom-divider {
    display: none;
  }
  .showroom-map {
    order: 2;
  }
  .showroom-info {
    order: 1;
  }
}

/* Hover Zoom effect on project card image */
.project-card:hover .project-img {
  transform: scale(1.05);
}
