* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

img { pointer-events: none; -webkit-user-drag: none; }
picture { display: block; width: 100%; height: 100%; }

.js-fade-img { opacity: 0; transition: opacity 0.5s ease; }
.js-fade-img.is-loaded { opacity: 1; }

body {
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

*, *::before, *::after { user-select: none; }

#page-loader {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 99990;
  pointer-events: none;
}

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  height: 64px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

header.scrolled { background-color: #fff; }

.header-logo { grid-column: 2; transition: opacity 0.3s ease; }
.header-logo a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #111;
  text-decoration: none;
}
.logo-euro { color: #1a56c4; }
.logo-konzol { color: #111; }

.header-menu { grid-column: 3; justify-self: end; }
.header-left {
  grid-column: 1;
  justify-self: start;
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
}

.header-menu {
  background: none; border: none; outline: none;
  cursor: pointer;
  display: flex; flex-direction: column;
  gap: 3px; padding: 8px;
}
.header-menu span { display: block; height: 2px; background: #000; transition: transform 0.3s ease; }
#bar1 { width: 22px; margin-left: 0; transition: transform 0.35s ease, margin-left 0.35s ease; }
#bar2 { width: 22px; margin-left: 6px; transition: transform 0.35s ease, margin-left 0.35s ease; }
.header-menu:hover #bar1 { transform: translateX(3px); }
.header-menu:hover #bar2 { transform: translateX(-3px); }
#menu-toggle.open #bar1 { width: 26px; margin-left: 0; transform: translateY(5px) rotate(45deg); }
#menu-toggle.open #bar2 { width: 26px; margin-left: 0; transform: rotate(-45deg); }

/* MENU OVERLAY */
#menu-overlay {
  position: fixed; inset: 0; z-index: 210;
  background: #fff;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex; flex-direction: column;
}
#menu-overlay.open { opacity: 1; pointer-events: all; }
#menu-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px 64px 60px;
  gap: 40px;
  overflow: auto;
  align-items: center;
}
.menu-nav-panel { display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.menu-link {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 400; color: #000; text-decoration: none;
  line-height: 1.25; letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.menu-link:hover { opacity: 0.4; }
.menu-contact-panel { display: flex; flex-direction: column; justify-content: center; padding-left: 40px; border-left: 1px solid #ddd; }
.menu-contact-label { font-family: 'Michroma', sans-serif; font-size: 13px; color: #999; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.menu-contact-link { font-family: 'Michroma', sans-serif; font-size: clamp(16px, 1.8vw, 22px); color: #000; text-decoration: none; font-weight: 500; margin-bottom: 16px; display: block; transition: opacity 0.2s; }
.menu-contact-link:hover { opacity: 0.5; }
.menu-tagline { font-family: 'Inter', sans-serif; font-size: 13px; color: #999; margin-bottom: 8px; margin-top: 40px; }
.menu-copy { font-family: 'Inter', sans-serif; font-size: 12px; color: #999; }

/* PROJECTS GRID (referenciak) */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 64px;
}
.project-item { overflow: hidden; }
.project-img { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.project-item:hover .project-img img { transform: scale(1.04); }
.project-info { padding: 20px 6vw 28px; }
.project-title {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 400; color: #111; letter-spacing: 0.01em;
}
.project-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: #999;
  letter-spacing: 0.02em; margin-top: 6px;
}

/* FOOTER */
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 48px 6vw;
  border-top: 1px solid #eee;
  background: #fff;
}
.site-footer-name {
  font-family: 'Michroma', sans-serif;
  font-size: 13px; color: #111; margin-bottom: 8px;
}
.site-footer-line {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #777; text-decoration: none;
  display: block; line-height: 1.6;
}
.site-footer-copy { text-align: right; }

/* STATIC PAGE HEADER (Bemutatkozás-style pages) */
.static-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: transparent;
}
.static-nav { display: flex; align-items: center; gap: 0; }
.static-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  transition: opacity 0.2s;
}
.static-nav a:hover { opacity: 0.55; }
.static-nav a.active { opacity: 0.4; }
.static-nav a + a { position: relative; padding-left: 28px; }
.static-nav a + a::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 12px;
  background: rgba(0,0,0,0.2);
}

/* PAGE HERO (near-full-width framed image) */
.page-hero { padding: 0; background: #fff; }
.page-hero-frame {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.page-hero-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-glass {
  position: absolute;
  right: 32px; bottom: 32px;
  display: flex; gap: 16px;
  padding: 18px;
  background: rgba(20, 22, 26, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.glass-card {
  position: relative;
  width: clamp(160px, 15vw, 240px);
  text-decoration: none; display: block;
  transition: transform 0.3s ease;
}
.glass-card:hover { transform: translateY(-3px); }
.glass-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.glass-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  pointer-events: none;
}
.glass-card span {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: #fff; text-align: left;
}

/* PAGE INTRO (two-column) */
.page-intro {
  padding: 64px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}
.page-intro-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.6;
  color: #111;
}
.page-intro-body-wrap { display: flex; flex-direction: column; gap: 20px; }
.page-intro-body {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 400;
  line-height: 1.7; color: #666;
}
.page-intro-link {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: #111; text-decoration: none;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #eee;
  padding-top: 14px; max-width: 280px;
  transition: opacity 0.2s;
}
.page-intro-link:hover { opacity: 0.55; }

/* PAGE GALLERY (Introducing Project) */
.page-gallery-section { padding: 0 24px 72px; }
.page-gallery-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: #111; margin-bottom: 20px;
}
.page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.page-gallery-item { text-decoration: none; color: inherit; display: block; }
.page-gallery-img { width: 100%; aspect-ratio: 1086 / 1448; overflow: hidden; }
.page-gallery-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.page-gallery-item:hover .page-gallery-img img { transform: scale(1.05); }
.page-gallery-info {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; gap: 12px;
}
.page-gallery-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: -0.01em; text-transform: uppercase; color: #111;
}
.page-gallery-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: #999; text-align: right;
}

/* PAGE FEATURE STRIP (wide image) */
.page-feature-strip { padding: 0 24px; }
.page-feature-img { width: 100%; height: 62vh; overflow: hidden; }
.page-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* HOME HEADER (static, light) */
.home-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px; background: #fff;
}
.home-nav { display: flex; align-items: center; gap: 36px; }
.home-nav a {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px;
  color: #111; text-decoration: none; transition: opacity 0.2s;
}
.home-nav a:hover { opacity: 0.6; }
.btn-pill-outline {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px;
  color: #111; text-decoration: none;
  border: 1px solid #111; border-radius: 999px;
  padding: 11px 26px;
  transition: all 0.2s ease;
}
.btn-pill-outline:hover { background: #111; color: #fff; }

/* HOME HERO (two-column) */
.home-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5vw; align-items: center;
  padding: 40px 40px 100px;
  background: #fff;
}
.home-hero-heading {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.1;
  letter-spacing: -0.02em; color: #111;
}
.home-hero-body {
  font-family: 'Inter', sans-serif; font-size: 15px; color: #666;
  line-height: 1.7; max-width: 420px; margin-top: 24px;
}
.home-hero-buttons { display: flex; gap: 14px; margin-top: 32px; }
.btn-outline, .btn-filled {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px;
  text-decoration: none; border-radius: 999px; padding: 14px 30px;
  transition: all 0.2s ease;
}
.btn-outline { color: #111; border: 1px solid #ccc; }
.btn-outline:hover { border-color: #111; }
.btn-filled { color: #fff; background: #111; border: 1px solid #111; }
.btn-filled:hover { background: #333; }
.home-hero-img { width: 100%; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 6px; }
.home-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* HOME MISSION (dark full-width image) */
.home-mission { position: relative; width: 100%; height: 78vh; overflow: hidden; }
.home-mission img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-mission::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.6) 100%);
}
.home-mission-content {
  position: absolute; left: 40px; right: 40px; bottom: 48px;
  z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.home-mission-heading {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(28px, 4vw, 52px); line-height: 1.1;
  letter-spacing: -0.02em; color: #fff; text-transform: uppercase;
}
.home-mission-btn {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px;
  color: #111; background: #fff; text-decoration: none;
  border-radius: 999px; padding: 14px 28px; white-space: nowrap;
  transition: opacity 0.2s;
}
.home-mission-btn:hover { opacity: 0.8; }

/* HOME STATS */
.home-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5vw; padding: 100px 40px; background: #fff;
}
.home-stats-heading {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px); line-height: 1.2;
  letter-spacing: -0.02em; color: #111;
}
.home-stats-body {
  font-family: 'Inter', sans-serif; font-size: 15px; color: #666;
  line-height: 1.7; margin-top: 20px; max-width: 440px;
}
.home-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eee; border-left: 1px solid #eee;
}
.stat-item { padding: 32px 28px; border-right: 1px solid #eee; border-bottom: 1px solid #eee; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(32px, 3vw, 44px); color: #111; display: block;
}
.stat-label {
  font-family: 'Inter', sans-serif; font-size: 13px; color: #777;
  line-height: 1.5; margin-top: 8px; display: block;
}

/* FIGMA HOMEPAGE REBUILD */
.fh-body { font-family: 'Inter', sans-serif; }

/* CLIENT LOGOS (Figma) */
.logos-section { background: #000; padding: 180px 80px; }
.logos-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 130px 40px; align-items: center; justify-items: center;
}
.logos-item { height: 44px; width: 100%; display: flex; align-items: center; justify-content: center; }
.logos-item a { display: flex; align-items: center; justify-content: center; height: 100%; max-width: 100%; }
.logos-item img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
  opacity: 0.45; transition: opacity 0.3s ease;
}
.logos-item:hover img { opacity: 1; }
.logos-item img.logo-scale-sm { max-height: 78%; }
.logos-item img.logo-scale-lg { max-height: 135%; }
.logos-item img.logo-scale-xl { max-height: 165%; }

@media (max-width: 900px) {
  .logos-section { padding: 80px 24px; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 64px 24px; }
  .logos-item { height: 25.5px; }
}

/* COVER HERO (Figma) */
.cover-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cover-hero-bg { position: absolute; inset: 0; z-index: 0; }
.cover-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cover-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.3) 40%, rgba(15,23,42,0.1) 100%);
}
.cover-hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center; max-width: 820px; padding: 80px 40px 120px;
}
.cover-hero-title {
  font-family: 'Inter', sans-serif; font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.15; color: #fff;
}
.cover-hero-subtitle {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 16px;
  line-height: 1.6; color: #e2e8f0; max-width: 600px;
}
.cover-hero-cta {
  background: #f4f6f9; color: #1e3a8a;
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 14px; letter-spacing: 0.5px;
  padding: 14px 40px; border-radius: 28px; text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-top: 8px;
  transition: transform 0.2s ease;
}
.cover-hero-cta:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .cover-hero { min-height: 0; height: 40vh; }
  .cover-hero-content { padding: 140px 24px 80px; }
  .cover-hero-subtitle { max-width: 100%; }
}

/* EUROKONZOL HERO SPLIT */
.hero-split { display: flex; min-height: 100vh; }
.hero-split-text {
  flex: 1; background: #fdfdfd;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 20px; padding: 80px 100px;
}
.hero-split-img { flex: 1; overflow: hidden; }
.hero-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .hero-split { flex-direction: column; min-height: 0; }
  .hero-split-text { padding: 140px 24px 40px; align-items: center; text-align: center; }
  .hero-split-text .eh-chips-row { justify-content: center; }
  .hero-split-img { height: 40vh; }
}

/* EUROKONZOL HERO (Figma) */
.eh-hero {
  position: relative;
  width: 100%; min-height: 100vh;
  background: #fdfdfd;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 120px 100px 104px;
}
.eh-hero-image {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); z-index: 1;
  width: 57.5%; max-width: 920px; height: 92vh;
}
.eh-hero-image img,
.eh-hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.eh-hero-video { opacity: 0; transition: opacity 2.2s ease; }
.eh-hero-video.is-visible { opacity: 1; }

.eh-nav-container {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 28px;
  pointer-events: none;
  opacity: 0; transform: translateY(-16px);
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1) 2s, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 2s;
}
.eh-nav-container.is-visible { opacity: 1; transform: translateY(0); }
.eh-nav-glass-pills { display: flex; align-items: center; gap: 8px; pointer-events: auto; position: relative; }
.eh-logo-pill {
  height: 45px; padding: 0 16px; flex-shrink: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(220,220,224,0.78) 100%);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.eh-lang-pill { gap: 6px; cursor: pointer; }
.eh-lang-label {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 13px;
  letter-spacing: -0.05em; color: #000; transition: color 0.3s ease;
}
.eh-lang-label .eh-eyebrow-euro,
.eh-lang-label .eh-eyebrow-konzol { font-weight: 500; }
.eh-lang-chevron { width: 10px; height: 10px; display: block; transition: filter 0.3s ease; }
.eh-asterisk { width: 19px; height: 19px; display: block; transition: filter 0.3s ease; }
.eh-nav-divider { display: none; }
.eh-menu-toggle { display: none; width: 45px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; padding: 0; }
.eh-menu-bar { display: block; width: 16px; height: 1.5px; background: #000; }
.eh-nav-links-pill {
  height: 45px; padding: 0 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(220,220,224,0.78) 100%);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 34px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.eh-nav-links-pill p, .eh-nav-links-pill a {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 13px;
  letter-spacing: -0.05em; color: #000; white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}
.eh-nav-links-pill:has(p:hover, a:hover) p,
.eh-nav-links-pill:has(p:hover, a:hover) a { color: #b0b0b0; }
.eh-nav-links-pill:has(p:hover, a:hover) p:hover,
.eh-nav-links-pill:has(p:hover, a:hover) a:hover { color: #000; }
.eh-nav-contact { cursor: pointer; transition: opacity 0.2s; }
.eh-nav-contact:hover { opacity: 0.6; }

.eh-contact-overlay {
  position: fixed; inset: 0; z-index: 450;
  background: rgba(15,16,18,0.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.eh-contact-overlay.open { opacity: 1; pointer-events: auto; }

.eh-contact-panel, .eh-mobile-menu-panel {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  background: #e8e8ea;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 12px 12px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 24px;
  visibility: hidden;
  clip-path: inset(0 0 100% 0 round 12px 12px 24px 24px);
  transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.5s;
  pointer-events: none;
}
.eh-mobile-menu-panel { display: flex; flex-direction: column; gap: 4px; padding: 12px; }
.eh-mobile-menu-link {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px;
  letter-spacing: -0.03em; color: #0f1012; text-decoration: none;
  padding: 14px 12px; border-radius: 14px;
  transition: background 0.2s ease;
}
.eh-mobile-menu-link:active { background: rgba(255,255,255,0.7); }
.eh-contact-panel.open, .eh-mobile-menu-panel.open { visibility: visible; clip-path: inset(0 0 0% 0 round 12px 12px 24px 24px); pointer-events: auto; }
.eh-contact-panel-header { display: flex; align-items: center; justify-content: space-between; }
.eh-contact-panel-title { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 22px; color: #0f1012; }
.eh-contact-panel-close {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.6); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.eh-contact-panel-close:hover { background: rgba(255,255,255,0.9); }
.eh-contact-panel-divider { height: 1px; background: rgba(15,16,18,0.12); margin: 16px 0; }
.eh-contact-panel-label {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase; color: #8f8f8f;
  text-align: center; margin-bottom: 12px;
}
.eh-contact-row {
  display: flex; align-items: center; gap: 12px;
  height: 48px; padding: 0 16px;
  background: rgba(255,255,255,0.55);
  border-radius: 16px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.eh-contact-row:last-child { margin-bottom: 0; }
.eh-lang-option {
  width: 100%; border: none; text-align: left; cursor: pointer;
  font-family: inherit; font-size: inherit; color: inherit;
}
.eh-lang-option.is-active { box-shadow: inset 0 0 0 1.5px #0071e3; }
.eh-lang-option.is-active .eh-contact-row-text { color: #0071e3; font-weight: 500; }
.eh-contact-row:hover { background: rgba(255,255,255,0.85); }
.eh-contact-row-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.eh-contact-row-text {
  flex: 1; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13px;
  color: #0f1012; letter-spacing: -0.05em;
}
.eh-contact-row-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(15,16,18,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.eh-contact-row-arrow img { width: 12px; height: 12px; display: block; }

.eh-hero-body {
  position: relative; z-index: 3;
}
.eh-left-content { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; width: 480px; max-width: 100%; }
.eh-eyebrow {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 22px;
  letter-spacing: 0.02em; text-transform: none;
}
.eh-eyebrow-euro { color: #0071e3; }
.eh-eyebrow-konzol { color: #0f1012; }
.eh-heading p {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.05em; line-height: 1.2; color: #0f1012;
}
.eh-chips-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.eh-chip-label {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 12px;
  letter-spacing: -0.05em; color: #8f8f8f;
}
.eh-chip {
  padding: 6px 14px;
  border: 1px solid #0071e3; border-radius: 20px;
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 12px;
  letter-spacing: -0.05em; color: #0071e3;
}

.eh-down-arrow {
  position: absolute; left: 100px; bottom: 48px; z-index: 5;
  width: 28px; height: 46px;
  background: rgba(15,16,18,0.04);
  border: 1px solid rgba(15,16,18,0.08); border-radius: 999px;
  box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.eh-down-arrow:hover { background: rgba(15,16,18,0.07); transform: translateY(2px); }
.eh-down-arrow img { width: 12px; height: 12px; display: block; }

@media (max-width: 900px) {
  /* Hero image sits flush against the bottom of the section, behind the
     down arrow, rather than stacked as its own block below the text. */
  .eh-hero {
    height: auto; min-height: 100vh; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px 24px 45svh;
  }
  .eh-hero-body {
    order: 1;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    width: 100%;
  }
  .eh-hero-image {
    position: absolute; left: 0; right: 0; top: auto; bottom: 0; transform: none;
    width: 100%; max-width: none; height: 45vh; height: 45svh; opacity: 1; z-index: 1;
  }
  .eh-hero-image img,
  .eh-hero-video { height: 100%; object-fit: cover; }
  .eh-left-content { width: 100%; align-items: center; text-align: center; }
  .eh-chips-row { justify-content: center; }
  .eh-down-arrow { left: 24px; bottom: 24px; z-index: 5; }
  .eh-nav-glass-pills { width: calc(100% - 48px); justify-content: space-between; }
  .eh-nav-links-pill { display: none; }
  .eh-menu-toggle { display: flex; }
  .eh-contact-panel, .eh-mobile-menu-panel { left: auto; width: 260px; }
}

/* ENGINEERING INSIGHT CTA (Figma) */
.ins-section { background: #fff; padding: 0 120px; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.ins-row { display: flex; align-items: flex-start; gap: 40px; }
.ins-meta { width: 200px; flex-shrink: 0; padding-top: 6px; }
.ins-meta-line { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.4; color: #8a8a8a; }
.ins-meta-line--dark { color: #0f0f0f; }
.ins-main { flex: 1; min-width: 0; }
.ins-heading {
  font-family: 'Inter', sans-serif; font-weight: 300;
  font-size: clamp(18px, 1.9vw, 26px); line-height: 1.25;
  letter-spacing: -0.05em; color: #1a1a1a; max-width: 640px;
}
.ins-heading-blue {
  color: #0071e3; display: inline-block;
  transition: filter 0.6s ease, opacity 0.6s ease;
}
.ins-heading-blue.is-transitioning { filter: blur(8px); opacity: 0; }
.ins-spacer { height: 80px; }
.ins-cta { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.ins-cta-pill {
  width: 44px; height: 28px;
  background: transparent; border: 1.5px solid #0071e3; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.ins-cta-pill img { width: 16px; height: 16px; display: block; }
.ins-cta-label { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 14px; color: #0071e3; white-space: nowrap; }

.ins-section .ins-meta {
  opacity: 0; filter: blur(12px);
  transition: opacity 2.4s ease, filter 2.4s ease;
}
.ins-section .ins-meta.is-visible { opacity: 1; filter: blur(0); }
.ins-section .ins-heading,
.ins-section .ins-cta {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}
.ins-section .ins-cta { transition-delay: 0.3s; }
.ins-section .ins-heading.is-visible,
.ins-section .ins-cta.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  #ins-section { display: none; }
  #fullwidth-image { display: none; }
  #food-industry-hero .bosch-split-text { background: #fff; }
  .ins-heading { font-size: 22px; max-width: 100%; }
  .ins-cta { justify-content: center; }
  .ins-spacer { height: 48px; }
}

/* FULLWIDTH IMAGE */
.fw-image { width: 100%; line-height: 0; }
.fw-image img { width: 100%; height: auto; display: block; }

/* SERVICES DARK (Figma) */
.svc-dark, .svc-light {
  position: relative;
  width: 100%; height: 120vh;
  overflow: hidden;
}
.svc-dark { background: #000; }
.svc-light { background: #fff; }
.svc-label {
  position: absolute; left: 50%; top: 48px; transform: translateX(-50%);
  font-family: 'Geist', sans-serif; font-weight: 300;
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  color: #5e5e5e;
}
.svc-big {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: 'Geist', sans-serif; font-weight: 300;
  font-size: clamp(70px, 13vw, 200px); line-height: 1;
  letter-spacing: -0.05em; color: #0071e3; opacity: 0;
  white-space: nowrap;
  filter: blur(16px);
  transition: opacity 1.8s ease, filter 1.8s ease;
}
.svc-big.is-visible { opacity: 0.9; filter: blur(0); }
.svc-big--1 { top: calc(50% - 140px); }
.svc-big--2 { top: calc(50% + 20px); }

.svc-device-wrap {
  position: absolute; left: calc(50% + 23px); top: calc(50% + 20px);
  transform: translate(-50%, -50%);
  width: min(700px, 90vw); aspect-ratio: 407 / 407;
  display: flex; align-items: center; justify-content: center;
}
.svc-device { transform: rotate(-8deg) translateY(var(--parallax-y, 0px)); }
.svc-device-body {
  width: 475px; height: 475px; padding: 30px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.svc-device-logo { width: 100%; height: 100%; object-fit: contain; display: block; }
.svc-device-shadow {
  position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%);
  width: 475px; display: block; pointer-events: none;
}

.svc-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  padding: 0 120px 60px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.svc-bottom-text {
  flex: 1; min-width: 0;
  font-family: 'Geist', sans-serif; font-weight: 300; font-size: 13px;
  line-height: 1.5; color: #5e5e5e;
}
.svc-bottom-text img { height: 48px; width: auto; display: block; }
.svc-right-actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
  flex-shrink: 0;
}
.svc-explore { font-family: 'Geist', sans-serif; font-weight: 300; font-size: 13px; color: #5e5e5e; white-space: nowrap; }
.svc-chips { display: flex; gap: 10px; }
.svc-chip {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid #0071e3; border-radius: 999px;
  padding: 8px 12px 8px 16px;
  font-family: 'Geist', sans-serif; font-size: 13px; color: #0071e3;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.svc-chip span { font-size: 14px; }
.svc-chip:hover { background: #0071e3; color: #fff; }

@media (max-width: 900px) {
  .svc-dark, .svc-light { height: auto; min-height: 90vh; padding-bottom: 60px; }
  .svc-big { font-size: clamp(58px, 20vw, 110px); }
  .svc-big--1 { top: calc(50% - 220px); }
  .svc-big--2 { top: calc(50% - 110px); }
  .svc-device-wrap { left: 50%; top: auto; bottom: 150px; transform: translateX(-50%); width: 260px; }
  .svc-device-body { width: 356px; height: 356px; }
  .svc-bottom { flex-direction: column; align-items: center; height: auto; padding: 0 24px 32px; gap: 20px; text-align: center; }
  .svc-right-actions { align-items: center; }
  .svc-chips { justify-content: center; }
}

/* BLUE ENGINEERING (Figma) */
.be-section { background: #0071e3; padding: 100px 120px 80px; }
.be-top { display: flex; align-items: center; gap: 12px; }
.be-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
}
.be-icon img { width: 18px; height: 18px; display: block; }
.be-title { font-family: 'Geist', sans-serif; font-weight: 300; font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.05em; color: #fff; }
.be-divider { height: 1px; background: rgba(255,255,255,0.25); margin: 60px 0; }
.be-middle { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.be-left { width: 340px; flex-shrink: 0; }
.be-left-title { font-family: 'Geist', sans-serif; font-weight: 300; font-size: 32px; line-height: 1.2; letter-spacing: -0.05em; color: #fff; }
.be-right { display: flex; flex-direction: column; gap: 12px; max-width: 560px; }
.be-tag { font-family: 'Geist', sans-serif; font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.55); }
.be-desc { font-family: 'Geist', sans-serif; font-weight: 300; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.8); }
.be-desc b { font-weight: 400; color: #fff; }
.be-bottom { display: flex; align-items: baseline; gap: 32px; }
.be-dash { font-family: 'Geist', sans-serif; font-weight: 300; font-size: 16px; color: rgba(255,255,255,0.4); margin-right: 208px; }
.be-index { font-family: 'Geist', sans-serif; font-weight: 300; font-size: 16px; color: rgba(255,255,255,0.55); }
.be-label { font-family: 'Geist', sans-serif; font-weight: 300; font-size: 28px; color: #fff; }

@media (max-width: 900px) {
  .be-section { padding: 64px 24px; }
  .be-divider { margin: 40px 0; }
  .be-middle { flex-direction: column; gap: 24px; }
  .be-left { width: auto; }
  .be-bottom { flex-wrap: wrap; gap: 12px 20px; }
  .be-dash { display: none; }
  .be-label { font-size: 22px; }
}

/* MISSION (Figma) */
.msn-section {
  background: #000; padding: 80px 120px 60px;
  min-height: 115vh; display: flex; align-items: center;
}
.msn-header { display: flex; flex-direction: column; gap: 4px; padding-left: 260px; }
.msn-eyebrow { font-family: 'Geist', sans-serif; font-weight: 300; font-size: 13px; color: #9e9e9e; }
.msn-highlight { font-family: 'Geist', sans-serif; font-weight: 300; font-size: 14px; color: #0071e3; }
.msn-rows { display: flex; flex-direction: column; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
.msn-row {
  display: flex; align-items: center; gap: 40px;
  height: 140px; border-top: 1px solid rgba(255,255,255,0.1);
}
.msn-meta { display: flex; flex-direction: column; gap: 4px; width: 200px; flex-shrink: 0; }
.msn-index { font-family: 'Geist', sans-serif; font-weight: 300; font-size: 12px; color: #5e5e5e; }
.msn-label { font-family: 'Geist', sans-serif; font-weight: 300; font-size: 13px; color: #8f8f8f; }
.msn-statement {
  font-family: 'Geist', sans-serif; font-weight: 300;
  font-size: clamp(24px, 2.6vw, 42px); line-height: 1.2; letter-spacing: -0.05em; flex: 1;
  color: #5e5e5e;
}
.msn-statement {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1.8s ease, transform 1.8s ease, color 0.6s ease;
}
.msn-statement.is-visible { opacity: 1; transform: translateY(0); }
.msn-statement.is-active { color: #f0f0f0; }

/* CATEGORY DIVIDER (projects page) */
.cat-divider { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cat-divider-link { text-decoration: none; cursor: pointer; }
.cat-divider-bg { position: absolute; inset: 0; z-index: 0; }
.cat-divider-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-divider-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
}
.cat-divider-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; padding: 0 24px; text-align: center; }
.cat-divider-heading { flex: none; font-size: clamp(40px, 8vw, 120px); text-align: center; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.cat-hero-heading {
  font-family: 'Geist', sans-serif; font-weight: 300;
  font-size: clamp(40px, 8vw, 120px); letter-spacing: -0.05em;
  text-align: center; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.cat-divider-nav {
  position: absolute; left: 0; right: 0; bottom: 32px; z-index: 1;
  display: flex; justify-content: space-between; padding: 0 32px;
}
.cat-divider-nav-link {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13px;
  color: rgba(255,255,255,0.85); text-decoration: none; letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  transition: color 0.2s ease;
}
.cat-divider-nav-link:hover { color: #fff; }

@media (max-width: 900px) {
  .cat-divider { min-height: 60vh; }
  .cat-divider-nav { bottom: 20px; padding: 0 20px; }
}

/* CATEGORY SCROLL (projects page — sticky centered text over plain stacked images) */
.cat-scroll { position: relative; }
.cat-scroll-text-wrap {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.cat-scroll-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.12); }
.cat-scroll-text {
  position: relative; z-index: 1; pointer-events: auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(8px, 2vw, 20px);
  text-align: center; padding: 0 24px;
}
.cat-scroll-item {
  font-family: 'Geist', sans-serif; font-weight: 300;
  font-size: clamp(36px, 6.5vw, 96px); line-height: 1.3; letter-spacing: -0.05em;
  text-decoration: none; color: #8f8f8f;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  transition: color 0.6s ease;
}
.cat-scroll-item.is-active { color: #fff; }
.cat-scroll-images { position: relative; z-index: 1; }
.cat-scroll-img-block { height: 100vh; position: relative; }
.cat-scroll-img-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-scroll-img-block::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
@media (max-width: 900px) {
  .cat-scroll-img-block { height: auto; aspect-ratio: 1 / 1; }
  .cat-scroll-item { font-size: clamp(45px, 8.125vw, 120px); }
}

@media (max-width: 900px) {
  .msn-section { padding: 56px 24px 40px; }
  .msn-header { padding-left: 0; }
  .msn-rows { margin-top: 64px; }
  .msn-row { height: auto; flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px 0; }
  .msn-meta { width: auto; }
}

/* PAGE FOOTER */
.page-footer { padding: 64px 24px 32px; }
.page-footer-top {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 48px; padding-bottom: 48px;
}
.page-footer-brand { max-width: 280px; }
.page-footer-logo { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 20px; }
.page-footer-tagline {
  font-family: 'Inter', sans-serif; font-size: 13px; color: #777;
  margin-top: 12px; line-height: 1.6;
}
.page-footer-cols { display: flex; gap: 64px; }
.page-footer-col { display: flex; flex-direction: column; }
.page-footer-col-title {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: #111; margin-bottom: 14px;
}
.page-footer-col a, .page-footer-col .page-footer-address {
  font-family: 'Inter', sans-serif; font-size: 13px; color: #666;
  text-decoration: none; margin-bottom: 10px;
  transition: color 0.2s;
}
.page-footer-col a:hover { color: #111; }
.page-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid #eee;
  font-family: 'Inter', sans-serif; font-size: 12px; color: #999;
}
.page-footer-bottom a { color: #999; text-decoration: none; }
.page-footer-bottom a:hover { color: #111; }

@media (max-width: 768px) {
  .page-intro { grid-template-columns: 1fr; padding: 48px 20px 56px; gap: 24px; }
  .page-gallery-section { padding: 0 20px 56px; }
  .page-gallery-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-feature-strip { padding: 0 20px; }
  .page-feature-img { height: 40vh; }
  .page-footer { padding: 48px 20px 24px; }
  .page-footer-top { flex-direction: column; gap: 32px; }
  .page-footer-cols { gap: 40px; }
  .page-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .header-left { display: none; }
  header { padding-top: env(safe-area-inset-top); height: calc(64px + env(safe-area-inset-top)); }
  header { background-color: #fff !important; }
  .hero { height: 75svh; }
  .white-section { min-height: 70svh; padding: 60px 6vw; }
  .img-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 55svh); }
  .list-section { padding: 64px 6vw 96px; }
  .num-list { grid-template-columns: 1fr; }
  .num-item:nth-child(odd) { border-right: none; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-img { height: 50vh; }
  .projects-grid { grid-template-columns: 1fr; margin-top: calc(64px + env(safe-area-inset-top)); }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer-copy { text-align: left; }
  #menu-grid {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory;
    overscroll-behavior-x: none; padding: 0; gap: 0;
    align-items: stretch; scrollbar-width: none;
  }
  #menu-grid::-webkit-scrollbar { display: none; }
  .menu-nav-panel { min-width: 100vw; flex-shrink: 0; scroll-snap-align: start; padding: 80px 40px; justify-content: center; }
  .menu-contact-panel { min-width: 100vw; flex-shrink: 0; scroll-snap-align: start; padding: 80px 40px; border-left: none; justify-content: center; }
  .static-header { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 20px; padding-top: calc(20px + env(safe-area-inset-top)); }
  .static-nav { flex-wrap: wrap; gap: 16px; }
  .page-hero { padding: 0; }
  .page-hero-frame { height: 100svh; }
  .hero-glass { right: 12px; bottom: 12px; padding: 10px; gap: 8px; }
  .glass-card { width: 110px; }
  .glass-card span { font-size: 11px; left: 10px; bottom: 8px; }
}

/* REFERENCE SHOWCASE */
.ref-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px; background: #0f1012;
}
.ref-tile {
  position: relative; overflow: hidden;
  min-height: 620px; border-radius: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end; justify-content: center;
}
.ref-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 32%, rgba(0,0,0,0) 55%);
}
.ref-tile-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 0 24px 40px;
}
.ref-tile-title {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.05em; color: #fff;
}
.ref-tile-sub {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 17px;
  color: rgba(255,255,255,0.9); max-width: 360px;
}
.ref-tile-actions { display: flex; gap: 12px; margin-top: 8px; }
.ref-btn {
  padding: 10px 22px; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px;
  text-decoration: none; white-space: nowrap; transition: opacity 0.2s;
}
.ref-btn:hover { opacity: 0.8; }
.ref-btn--filled { background: #0071e3; color: #fff; }
.ref-btn--outline { background: transparent; color: #fff; border: 1.5px solid #fff; }

@media (max-width: 900px) {
  .ref-showcase { grid-template-columns: 1fr; padding: 10px; gap: 10px; }
  .ref-tile { min-height: 460px; }
}

/* BOSCH SPLIT */
.bosch-split { display: flex; min-height: 100vh; }
.bosch-split-img { flex: 1; overflow: hidden; }
.bosch-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bosch-split-text {
  flex: 1; background: #ececec;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 80px 80px;
}
.bosch-split-text .eh-eyebrow { margin-bottom: 28px; }
.bosch-split-text .ins-spacer { height: 32px; }

.bosch-split--dark .bosch-split-text { background: #0f1012; }
.bosch-split--dark .ins-heading { color: #fff; }
.bosch-split--dark .ins-cta-pill { background: transparent; }
.bosch-split--light-text .bosch-split-text { background: #fff; }
.bosch-split--light-text .ins-heading { color: #0f1012; }
.bosch-split--reverse { flex-direction: row-reverse; }

@media (max-width: 900px) {
  .fw-image img { height: 40vh; object-fit: cover; }
  #fullwidth-image img { height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
  .bosch-split { flex-direction: column; min-height: 0; }
  #food-industry-hero { flex-direction: column-reverse; }
  .bosch-split-img { height: 40vh; flex: 0 0 auto; }
  #food-industry-hero .bosch-split-img,
  #bosch-split .bosch-split-img,
  #other-projects-hero .bosch-split-img {
    height: auto; aspect-ratio: 1 / 1; flex: 0 0 auto;
  }
  .bosch-split-text {
    padding: 56px 24px; min-height: 70svh;
    align-items: center; text-align: center;
  }
  .bosch-split-text .ins-cta { justify-content: center; }
}

/* PROJECTS PAGE (Figma) */
.prj-page .eh-nav-container { display: none; }

/* Back-to-home link at the bottom of project/sub-project pages */
.back-home { padding: 64px 24px; display: flex; justify-content: center; background: #fff; }
.back-home-link {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px;
  color: #0f1012; text-decoration: none; letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.back-home-link:hover { opacity: 0.6; }

.prj-intro { padding: 160px 120px 60px; }
.prj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
.prj-card { display: block; text-decoration: none; color: inherit; }
.prj-card-img { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: #f2f2f2; }
.prj-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.prj-card:hover .prj-card-img img { transform: scale(1.04); }
.prj-card-caption { padding: 30px 6vw; background: #fff; }
.prj-card-caption--white { background: #fff; }
.prj-card-title {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 17px;
  letter-spacing: -0.05em; color: #111;
}
.prj-card-tag {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 12px;
  letter-spacing: -0.02em; color: #0071e3; margin-top: 6px;
}

.prj-footer { border-top: 1px solid #eaeaea; padding: 80px 64px; display: flex; flex-direction: column; gap: 40px; }
.prj-footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; }
.prj-footer-brand { max-width: 300px; display: flex; flex-direction: column; gap: 16px; }
.prj-footer-name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; color: #000; }
.prj-footer-desc { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 13px; line-height: 1.6; color: #717171; }
.prj-footer-cols { display: flex; gap: 80px; flex-wrap: wrap; }
.prj-footer-col { display: flex; flex-direction: column; gap: 12px; }
.prj-footer-col-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12px; text-transform: uppercase; color: #000; }
.prj-footer-col a, .prj-footer-col span {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13px;
  color: #717171; text-decoration: none;
}
.prj-footer-col a:hover { color: #000; }
.prj-footer-copy { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 11px; color: #717171; opacity: 0.6; }

@media (max-width: 900px) {
  .prj-intro { padding: 140px 24px 40px; }
  .prj-grid { grid-template-columns: 1fr; padding: 0; }
  .prj-card-img { aspect-ratio: auto; height: 40vh; }
  .prj-card-caption { padding: 22px 24px; }
  .prj-footer { padding: 56px 24px; }
  .prj-footer-top { flex-direction: column; gap: 32px; }
}

/* IMAGE CAROUSEL (peek style: neighboring slides partially visible) */
.img-carousel {
  position: relative;
  width: 100%; height: 88vh;
  background: #fff;
  margin-top: 0; margin-bottom: 0;
}
.img-carousel:last-of-type {
  margin-bottom: 100px;
}
.img-carousel-viewport { overflow: hidden; height: 100%; padding: 0 9%; cursor: none; touch-action: pan-y; }
.img-carousel-track {
  display: flex; height: 100%; gap: 10px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.img-carousel-slide { flex: 0 0 100%; width: 100%; height: 100%; }
.img-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.img-carousel-hint {
  position: absolute; top: 0; left: 0; z-index: 3;
  width: 110px; height: 110px; border-radius: 50%;
  background: #fff; color: #000;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: -0.02em;
  opacity: 0; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, width 0.3s, height 0.3s;
}
.img-carousel-hint.is-visible { opacity: 1; }
.img-carousel-hint.is-active { width: 50px; height: 50px; }
.img-carousel-hint.is-active .img-carousel-hint-text { display: none; }
.img-carousel-hint-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 16px; font-weight: 700;
  display: none;
}
.img-carousel-hint.is-active .img-carousel-hint-arrow { display: block; }
.img-carousel-hint-arrow--left { left: -32px; }
.img-carousel-hint-arrow--right { right: -32px; }

@media (max-width: 900px) {
  .img-carousel { height: 50vh; }
  .img-carousel-viewport { padding: 0 4%; }
  .img-carousel-track { gap: 10px; }
  .img-carousel-hint { display: none; }
}

/* SECTION LABEL (plain text divider, e.g. "Nestlé Purina") */
.section-label {
  background: #fff;
  height: 150px;
  display: flex; align-items: center; justify-content: center;
}
.section-label .cat-hero-heading { color: #0f1012 !important; text-shadow: none !important; font-size: clamp(20px, 2.5vw, 32px); }

/* FIGMA HERO (homepage) */
.figma-hero {
  background: #fff;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 190px 80px 120px;
}
.figma-hero-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 48px; width: 100%;
}
.figma-hero-heading {
  font-family: 'Inter', sans-serif; font-weight: 300;
  font-size: clamp(24px, 3.4vw, 44px); line-height: 1.2; letter-spacing: -0.05em;
  text-align: center; color: #09090b;
}
.figma-hero-euro { font-weight: 500; color: #2563e1; }
.figma-hero-konzol { font-weight: 500; color: #09090b; }
.figma-hero-ctas { display: flex; align-items: center; gap: 16px; }
.figma-hero-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 21px 14px 24px; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  text-decoration: none; white-space: nowrap;
}
.figma-hero-btn svg { width: 14px; height: 14px; }
.figma-hero-btn--outline { background: #fff; color: #2563e1; border: 1px solid #2563e1; }
.figma-hero-btn--outline svg path { stroke: #2563e1; }
.figma-hero-btn--filled { background: #2563e1; color: #fff; border: 1px solid #2563e1; }

@media (max-width: 900px) {
  .figma-hero { padding: 160px 24px 80px; }
  .figma-hero-ctas { flex-wrap: wrap; justify-content: center; }
}

/* THEME DARK (experimental page-wide black background trial) */
body.theme-dark { background: #000; }
body.theme-dark .section-label { background: #000; }
body.theme-dark .section-label .cat-hero-heading { color: #fff !important; }
body.theme-dark .img-carousel { background: #000; }
body.theme-dark .back-home { background: #000; }
body.theme-dark .back-home-link { color: #fff; }

/* APPLE-STYLE FLAT NAV (homepage trial) */
.an-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 52px; background: #fff;
  display: flex; align-items: center; justify-content: center; gap: 48px;
  padding: 0 20px;
}
.an-logo {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 17px;
  letter-spacing: -0.02em; text-decoration: none;
}
.an-links { display: flex; align-items: center; gap: 48px; }
.an-links a, .an-links button.an-trigger {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 12px;
  color: #1d1d1f; text-decoration: none;
  background: none; border: none; padding: 0; cursor: pointer;
  transition: opacity 0.2s ease;
}
.an-links a:hover, .an-links button.an-trigger:hover { opacity: 0.6; }
.an-menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 4px; padding: 8px; margin-left: auto;
}
.an-menu-toggle span {
  display: block; width: 20px; height: 2px; background: #1d1d1f;
  transition: transform 0.3s;
}
.an-menu-toggle.open span:first-child { transform: translateY(6px) rotate(45deg); }
.an-menu-toggle.open span:last-child { transform: rotate(-45deg); }

.an-panel {
  position: fixed; top: 0; left: 0; right: 0; z-index: 245;
  height: 0; overflow: hidden; background: #fff;
  transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.an-panel.open { height: 75vh; }
.an-panel-inner {
  padding: 110px 60px 40px; max-width: 640px;
  opacity: 0; transition: opacity 0.5s ease;
}
.an-panel.open .an-panel-inner { opacity: 1; transition: opacity 0.4s ease 0.15s; }
.an-panel-title {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 12px;
  color: #86868b; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.an-mobile-link {
  display: block; font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: clamp(30px, 5vw, 40px); color: #1d1d1f; text-decoration: none;
  background: none; border: none; padding: 0; margin-bottom: 18px;
  text-align: center; cursor: pointer; letter-spacing: -0.02em;
}
#an-mobile-panel.open {
  display: flex; align-items: center; justify-content: center;
}
#an-mobile-panel .an-panel-inner {
  width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
#an-dropdown-panel.open {
  display: flex; align-items: center; justify-content: center;
}
#an-dropdown-panel .an-panel-inner {
  width: 100%; margin: 0 auto; padding: 0 60px;
  display: flex; flex-direction: column; align-items: center;
}
.an-panel-content { display: none; width: 100%; flex-direction: column; align-items: center; }
.an-panel-content.active { display: flex; }
.an-contact-row {
  display: flex; align-items: center; gap: 14px;
  width: 100%; max-width: 690px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 16px;
  color: #1d1d1f; text-decoration: none; letter-spacing: -0.02em;
  background: rgba(0,0,0,0.03); border-radius: 16px;
  height: 56px; padding: 0 18px;
  margin-bottom: 10px; transition: background 0.2s ease;
}
.an-contact-row:hover { background: rgba(0,0,0,0.06); }
.an-contact-row-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.an-contact-row-text { flex: 1; text-align: left; }
.an-contact-row-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(15,16,18,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.an-contact-row-arrow img { width: 12px; height: 12px; display: block; }
.an-lang-option {
  display: block; width: 100%; max-width: 540px;
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px;
  color: #0f1012; letter-spacing: -0.02em;
  background: rgba(0,0,0,0.03); border: 1.5px solid transparent;
  border-radius: 16px; height: 48px; padding: 0 16px; text-align: left;
  cursor: pointer; margin-bottom: 10px; transition: background 0.2s ease;
}
.an-lang-option:hover { background: rgba(0,0,0,0.06); }
.an-lang-option:focus { outline: none; }
.an-lang-option.is-active { color: #0071e3; font-weight: 500; border-color: #0071e3; background: rgba(0,113,227,0.06); }

.an-blur-strip {
  position: fixed; left: 0; right: 0; top: 0; height: 25vh; z-index: 244;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  background: rgba(255,255,255,0.35);
  opacity: 0; pointer-events: none;
  transition: top 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.an-blur-strip.open { top: 75vh; opacity: 1; pointer-events: auto; }
.mobile-header-spacer { display: none; }

@media (max-width: 900px) {
  .an-links { display: none; }
  .an-menu-toggle { display: flex; }
  .mobile-header-spacer { display: block; height: 72px; background: #fff; }
}

/* SITE FOOTER (white, 3-column) */
.ftr { background: #fff; padding: 80px 80px 32px; }
.ftr-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.ftr-brand {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: -0.02em;
}
.ftr-brand .eh-eyebrow-euro { color: #0071e3; }
.ftr-brand .eh-eyebrow-konzol { color: #0f1012; }
.ftr-col-title {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13px;
  color: #8a8a8a; margin-bottom: 20px;
}
.ftr-links { display: flex; flex-direction: column; gap: 14px; }
.ftr-links a, .ftr-links span {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px;
  color: #1d1d1f; text-decoration: none; letter-spacing: -0.01em;
}
.ftr-links a:hover { color: #0071e3; }
.ftr-company p {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px;
  color: #1d1d1f; line-height: 1.6; letter-spacing: -0.01em;
}
.ftr-email {
  display: inline-block; margin-top: 8px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px;
  color: #0071e3; text-decoration: none;
}
.ftr-email:hover { text-decoration: underline; }
.ftr-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08);
}
.ftr-copy {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 13px;
  color: #8a8a8a; letter-spacing: 0.02em;
}
.ftr-copy-link { text-decoration: none; transition: color 0.2s ease; }
.ftr-copy-link:hover { color: #1d1d1f; }
@media (max-width: 900px) {
  .ftr { padding: 56px 24px 32px; text-align: center; }
  .ftr-top { grid-template-columns: 1fr; gap: 40px; }
  .ftr-links { align-items: center; }
  .ftr-bottom { flex-direction: column; gap: 12px; }
}

/* ACTIVITIES MODAL (homepage "Areas of Activity" panel) */
.activities-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.activities-overlay.open { opacity: 1; pointer-events: auto; }
.activities-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.96);
  z-index: 401; background: #fff; border-radius: 24px;
  padding: 56px 64px; max-width: 560px; width: calc(100% - 48px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.activities-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.activities-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.05); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.activities-modal-close:hover { background: rgba(0,0,0,0.1); }
.activities-list { list-style: none; text-align: center; }
.activities-list li {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 16px;
  letter-spacing: -0.01em; color: #1d1d1f;
  padding: 8px 0;
}
@media (max-width: 900px) {
  .activities-modal { padding: 40px 24px; }
  .activities-list li { font-size: 15px; }
}
