:root{
  --bg:        oklch(0.981 0.003 80);
  --bg-soft:   oklch(0.957 0.005 75);
  --bg-deep:   oklch(0.928 0.008 72);
  --paper:     oklch(0.993 0.002 82);

  --ink:       oklch(0.155 0.011 60);
  --ink-2:     oklch(0.270 0.012 58);
  --ink-3:     oklch(0.410 0.011 58);
  --gray:      oklch(0.555 0.009 62);
  --gray-soft: oklch(0.700 0.008 64);
  --line:      oklch(0.880 0.008 68);
  --line-soft: oklch(0.925 0.006 72);

  --clay:      oklch(0.530 0.130 48);
  --clay-soft: oklch(0.660 0.110 52);
  --clay-deep: oklch(0.410 0.130 42);
  --clay-bg:   oklch(0.930 0.024 62);

  --terra:     oklch(0.205 0.020 52);
  --terra-2:   oklch(0.155 0.014 52);
  --terra-3:   oklch(0.270 0.022 54);
  --terra-line: oklch(0.305 0.018 56);

  --on-dark:   oklch(0.962 0.008 78);
  --on-dark-2: oklch(0.810 0.010 72);
  --on-dark-3: oklch(0.640 0.010 66);

  --f-display: "Familjen Grotesk", system-ui, sans-serif;
  --f-body:    "Inter Tight", system-ui, sans-serif;

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:   cubic-bezier(0.30, 0.86, 0.36, 1);

  --pad-x:     clamp(20px, 4.5vw, 56px);
  --max-w:     1320px;
  --radius:    14px;
  --radius-sm: 8px;
}

*, *::before, *::after{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
html{ scroll-behavior: smooth; scroll-padding-top: 108px; -webkit-text-size-adjust: 100%; }
body{
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea, button{ font-family: inherit; }
::selection{ background: var(--clay); color: var(--paper); }

.eyebrow{
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--clay);
}
.eyebrow-light{ color: var(--clay-soft); }

.section-title{
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 10px 0 0;
  max-width: 22ch;
}
.section-title-light{ color: var(--on-dark); }

.section-lead{
  margin: 16px 0 0;
  max-width: 56ch;
  color: var(--ink-3);
  font-size: 0.98rem;
  line-height: 1.6;
}

.container{
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section{
  padding: clamp(64px, 7vw, 96px) 0;
  position: relative;
}

.section-head{ margin-bottom: clamp(32px, 4vw, 56px); max-width: 64rem; }
.section-head-center{ text-align: center; margin-left: auto; margin-right: auto; }
.section-head-center .eyebrow{ display: inline-block; }
.section-head-center .section-title{ margin-left: auto; margin-right: auto; }
.section-head-center .section-lead{ margin-left: auto; margin-right: auto; }

.btn-primary, .btn-ghost, .btn-submit, .btn-light{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: -0.003em;
  border-radius: 6px;
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  min-height: 44px;
  cursor: pointer;
}

.btn-primary{
  background: var(--clay);
  color: var(--paper);
  border: 1px solid var(--clay);
  box-shadow: 0 1px 0 oklch(0.42 0.13 42 / 0.4) inset, 0 14px 28px -10px oklch(0.42 0.13 42 / 0.35);
}
.btn-primary:hover{
  background: var(--clay-deep);
  border-color: var(--clay-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 oklch(0.35 0.13 42 / 0.4) inset, 0 18px 32px -10px oklch(0.42 0.13 42 / 0.45);
}
.btn-primary svg{ transition: transform 0.45s var(--ease); }
.btn-primary:hover svg{ transform: translateX(3px); }

.btn-ghost{
  color: var(--on-dark);
  border: 1px solid oklch(0.95 0.010 75 / 0.30);
  background: transparent;
}
.btn-ghost:hover{
  background: oklch(0.95 0.010 75 / 0.10);
  border-color: oklch(0.95 0.010 75 / 0.50);
  transform: translateY(-1px);
}

.btn-light{
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper);
}
.btn-light:hover{
  background: var(--bg-soft);
  border-color: var(--clay);
  color: var(--clay-deep);
  transform: translateY(-1px);
}

.btn-submit{
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 14px 24px;
  font-size: 0.95rem;
  align-self: flex-start;
}
.btn-submit:hover{
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-1px);
}
.btn-submit svg{ transition: transform 0.45s var(--ease); }
.btn-submit:hover svg{ transform: translateX(3px); }

.link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clay-deep);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow:hover{ color: var(--clay); }
.link-arrow svg{ transition: transform 0.45s var(--ease); flex-shrink: 0; }
.link-arrow:hover svg{ transform: translateX(4px); }

.topbar{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--terra-2);
  color: var(--on-dark-2);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  transition: transform 0.55s var(--ease);
  border-bottom: 1px solid oklch(0.95 0.010 75 / 0.08);
}
.topbar.is-hidden{ transform: translateY(-100%); }

.topbar-inner{
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 36px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.topbar-msg{
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.005em;
  color: var(--on-dark-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s var(--ease);
}
.topbar-msg:hover{ color: var(--on-dark); }
.topbar-msg svg{ color: var(--clay-soft); flex-shrink: 0; }
.topbar-phone{
  color: var(--on-dark);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.005em;
  transition: color 0.3s var(--ease);
  padding: 0 4px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.topbar-phone svg{ color: var(--clay-soft); }
.topbar-phone:hover{ color: var(--clay-soft); }

.navbar{
  position: fixed;
  top: 36px;
  left: 0; right: 0;
  z-index: 55;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  transition: top 0.55s var(--ease), box-shadow 0.45s var(--ease);
}
.navbar.is-solo{ top: 0; }
.navbar.is-scrolled{
  box-shadow: 0 1px 0 var(--line-soft), 0 10px 28px -22px oklch(0.16 0.012 60 / 0.18);
}

.navbar-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.brand{
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
  transition: color 0.4s var(--ease);
  padding: 6px 0;
}
.brand-mark{
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform 0.5s var(--ease), color 0.4s var(--ease);
}
.brand-mark svg{ width: 38px; height: 38px; }
.brand:hover .brand-mark{ transform: rotate(-3deg); color: var(--clay-deep); }
.brand-text{ display: flex; flex-direction: column; gap: 1px; line-height: 1.05; }
.brand-name{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.018em;
}
.brand-sub{
  font-size: 0.74rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.brand:hover .brand-name{ color: var(--clay-deep); }

.brand-light{ color: var(--on-dark); }
.brand-light .brand-sub{ color: var(--on-dark-3); }

.nav-links{
  display: flex; align-items: center; gap: 2px;
}
.nav-link{
  padding: 10px 4px;
  margin: 0 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color 0.35s var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-link::after{
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 12px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav-link:hover{ color: var(--ink); }
.nav-link:hover::after{ transform: scaleX(1); transform-origin: left; }

.nav-cta{
  margin-left: 14px;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.4s var(--ease), transform 0.45s var(--ease);
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover{ background: var(--clay); transform: translateY(-1px); }

.menu-toggle{
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: var(--ink);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-toggle:hover{ background: var(--clay); border-color: var(--clay); }
.menu-bar{
  width: 18px; height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.is-open{ background: var(--clay); border-color: var(--clay); }
.menu-toggle.is-open .menu-bar{ background: var(--paper); }
.menu-toggle.is-open .menu-bar:nth-child(1){ transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open .menu-bar:nth-child(2){ transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu{
  position: fixed; inset: 0;
  z-index: 54;
  background: var(--paper);
  padding: 116px var(--pad-x) 32px;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open{ opacity: 1; pointer-events: auto; }
.mobile-link{
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.022em;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.3s var(--ease);
}
.mobile-link::after{
  content: "";
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--ink-3);
  border-top: 1.5px solid var(--ink-3);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 2px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-link:hover{ color: var(--clay-deep); }
.mobile-link:hover::after{ border-color: var(--clay); transform: rotate(45deg) translateX(2px); }
.mobile-menu.is-open .mobile-link{ opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-link:nth-child(1){ transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-link:nth-child(2){ transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-link:nth-child(3){ transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-link:nth-child(4){ transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-link:nth-child(5){ transition-delay: 0.25s; }

.mobile-link-cta{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 32px;
  padding: 18px 28px;
  background: var(--clay);
  color: var(--paper);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 6px;
  min-height: 56px;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background-color 0.3s var(--ease);
  box-shadow: 0 12px 28px -10px oklch(0.42 0.13 42 / 0.35);
}
.mobile-link-cta:hover{ background: var(--clay-deep); }
.mobile-menu.is-open .mobile-link-cta{ opacity: 1; transform: translateY(0); transition-delay: 0.30s; }

.mobile-foot{
  margin-top: 40px;
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--line-soft);
}
.mobile-foot a{
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
  display: block;
}
.mobile-foot a + a{ border-top: 1px solid var(--line-soft); }

.hero{
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: clip;
  padding: 180px 0 80px;
}

.hero-bg{
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.06);
}
.hero-veil{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.16 0.012 55 / 0.20) 0%, oklch(0.16 0.012 55 / 0.55) 60%, oklch(0.10 0.010 55 / 0.85) 100%),
    radial-gradient(120% 80% at 50% 0%, oklch(0.18 0.014 55 / 0.0) 0%, oklch(0.18 0.014 55 / 0.35) 100%);
}

.hero-inner{
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  color: var(--on-dark);
}

.hero-place{
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--clay-soft);
  margin-bottom: 22px;
}

.hero-title{
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.8vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--on-dark);
  margin: 0;
  max-width: 18ch;
}

.hero-lead{
  margin: 20px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--on-dark-2);
  max-width: 56ch;
}

.hero-actions{
  margin: 28px 0 0;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero-actions .btn-primary,
.hero-actions .btn-ghost{
  padding: 15px 22px;
  font-size: 0.96rem;
  min-height: 48px;
}

.hero-credits{
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-size: 0.82rem;
  color: var(--on-dark-2);
  font-weight: 500;
  letter-spacing: 0.005em;
  padding-top: 18px;
  border-top: 1px solid oklch(0.96 0.008 78 / 0.20);
  max-width: 780px;
}
.hero-credit{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-credit svg{ color: var(--clay-soft); flex-shrink: 0; }
.hero-credits-sep{
  display: inline-block;
  width: 1px; height: 14px;
  background: oklch(0.96 0.008 78 / 0.30);
}

.section-om{ background: var(--bg); }
.om-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.om-figure{
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
  cursor: zoom-in;
}
.om-img{ width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.om-figure:hover .om-img{ transform: scale(1.04); }
.om-figure-cap{
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: flex; justify-content: space-between; gap: 16px;
  color: var(--on-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px oklch(0.16 0.012 55 / 0.6);
}

.om-content{ max-width: 60ch; }
.om-body{ margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.om-body p{ margin: 0; color: var(--ink-2); font-size: 0.98rem; line-height: 1.65; max-width: 56ch; }

.om-stats{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.om-stat{
  background: var(--bg);
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.om-stat-num{
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--clay-deep);
  line-height: 1;
}
.om-stat-label{
  font-size: 0.82rem;
  color: var(--ink-3);
  line-height: 1.4;
}

.om-cta{
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px 22px;
  flex-wrap: wrap;
}
.om-cta .link-arrow{ align-self: center; }

.section-tjanster{ background: var(--bg-soft); }

.services-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.55s var(--ease), border-color 0.45s var(--ease), box-shadow 0.55s var(--ease);
  position: relative;
  cursor: zoom-in;
}
.service:hover{
  transform: translateY(-3px);
  border-color: var(--clay-soft);
  box-shadow: 0 16px 40px -20px oklch(0.16 0.012 55 / 0.18);
}

.service-media{
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
  border-radius: 10px 10px 0 0;
}
.service-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.service:hover .service-media img{ transform: scale(1.05); }

.service-body{
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; flex: 1;
}
.service-kicker{
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--clay);
  letter-spacing: 0.005em;
}
.service-title{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 4px 0 10px;
  color: var(--ink);
  line-height: 1.1;
}
.service-desc{
  margin: 0 0 14px;
  color: var(--ink-3);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.service-cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--clay-deep);
  padding: 8px 12px;
  margin: 2px -12px 0;
  border-radius: 5px;
  align-self: flex-start;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.service-cta:hover{
  background: var(--clay-bg);
}
.service-cta svg{ transition: transform 0.4s var(--ease); }
.service-cta:hover svg{ transform: translateX(3px); }

.cta-banner{
  position: relative;
  margin-top: clamp(40px, 5vw, 64px);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  color: var(--on-dark);
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
}
.cta-banner-bg{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: -2;
}
.cta-banner-veil{
  position: absolute;
  inset: 0;
  background: oklch(0.13 0.012 55 / 0.62);
  z-index: -1;
}
.cta-banner-inner{
  max-width: 560px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-banner-eyebrow{
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-soft);
}
.cta-banner-title{
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--on-dark);
}
.cta-banner-actions{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  flex-wrap: wrap;
}
.cta-banner .btn-primary{
  background: var(--clay);
  border-color: var(--clay);
  color: var(--paper);
}
.cta-banner-phone{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-dark);
  padding: 8px 4px;
  border-bottom: 1px solid oklch(0.96 0.008 78 / 0.4);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cta-banner-phone:hover{ color: var(--clay-soft); border-bottom-color: var(--clay-soft); }
.cta-banner-phone svg{ color: var(--clay-soft); }

.section-projekt{ background: var(--bg); }

.gallery{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(160px, auto);
  grid-auto-flow: dense;
  gap: 12px;
}
.tile{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-deep);
  grid-column: span 3;
  aspect-ratio: 1;
  cursor: zoom-in;
  display: block;
  padding: 0;
  border: 0;
  width: 100%;
}
.tile img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.95);
}
.tile:hover img{ transform: scale(1.06); filter: saturate(1.05); }

.tile-cap{
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  display: flex; flex-direction: column; gap: 2px;
  color: var(--on-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.55s var(--ease);
  z-index: 2;
  text-align: left;
}
.tile-cap span:last-child{ color: var(--on-dark-2); font-size: 0.72rem; }

.tile::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(0.14 0.012 55 / 0.78) 100%);
  opacity: 0; transition: opacity 0.5s var(--ease);
  z-index: 1; pointer-events: none;
}
.tile:hover::after{ opacity: 1; }
.tile:hover .tile-cap{ opacity: 1; transform: translateY(0); }

.section-varfor{ background: var(--bg-soft); }

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

.varfor-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.varfor-card:hover{
  transform: translateY(-2px);
  border-color: var(--clay-soft);
  box-shadow: 0 14px 32px -20px oklch(0.16 0.012 55 / 0.16);
}

.varfor-card-icon{
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--clay-bg);
  color: var(--clay-deep);
}
.varfor-card-icon svg{ width: 22px; height: 22px; }

.varfor-card-title{
  margin: 0;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.15;
}
.varfor-card-text{
  margin: 0;
  color: var(--ink-3);
  font-size: 0.94rem;
  line-height: 1.55;
}


@media (min-width: 720px){
  .varfor-grid{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1100px){
  .varfor-grid{ grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .varfor-card{ padding: 22px 20px 20px; }
}

.section-bevis{
  background: var(--terra-2);
  color: var(--on-dark);
}
.section-bevis::before{
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(60% 50% at 100% 0%, oklch(0.42 0.10 50 / 0.20), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, oklch(0.36 0.09 48 / 0.18), transparent 75%);
}

.bevis-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.bevis-text{ max-width: 56ch; }
.bevis-lead{
  margin: 22px 0 0;
  color: var(--on-dark-2);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 52ch;
}

.bevis-list{
  margin: 24px 0 0;
  padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--terra-line);
}
.bevis-list li{
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--terra-line);
}
.bevis-list li:nth-child(odd){ padding-right: 18px; }
.bevis-list li:nth-child(even){ padding-left: 18px; border-left: 1px solid var(--terra-line); }
.bevis-list-key{
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-3);
  font-weight: 600;
}
.bevis-list-val{
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--on-dark);
  letter-spacing: -0.012em;
}

.bevis-figures{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.bevis-figure{
  position: relative;
  margin: 0;
  background: var(--terra-3);
  border: 1px solid var(--terra-line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: zoom-in;
  transition: transform 0.55s var(--ease);
}
.bevis-figure:hover{ transform: translateY(-2px); }
.bevis-figure img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.bevis-figure figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  display: flex; justify-content: space-between; gap: 14px;
  background: linear-gradient(0deg, oklch(0.18 0.02 50 / 0.94), transparent);
  font-size: 0.78rem;
  color: var(--on-dark);
}
.bevis-figure figcaption span:last-child{ color: var(--on-dark-2); font-size: 0.72rem; }

.section-kontakt{ background: var(--bg); }
.anchor-offset{ display: block; height: 0; transform: translateY(-110px); }

.kontakt-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.kontakt-aside{
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.kontakt-row{
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.4s var(--ease);
  min-height: 48px;
}
.kontakt-row:last-of-type{ border-bottom: 0; }
.kontakt-row:not(.kontakt-row-static):hover{ color: var(--clay-deep); }
.kontakt-row:not(.kontakt-row-static):hover .kontakt-icon{
  background: var(--clay);
  color: var(--paper);
  border-color: var(--clay);
}

.kontakt-icon{
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--clay-deep);
  display: grid; place-items: center;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.kontakt-icon svg{ width: 15px; height: 15px; }

.kontakt-row-body{ display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.kontakt-row-key{
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}
.kontakt-row-val{
  font-family: var(--f-display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
}

.kontakt-promise{
  margin-top: 18px;
  padding: 22px;
  background: var(--clay-bg);
  color: var(--ink-2);
  border-radius: 6px;
  border: 1px solid oklch(0.85 0.05 60);
}
.kontakt-promise p{
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.kontakt-form{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  max-width: 100%;
  overflow: hidden;
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-field{ display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.form-field label{
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.form-field input,
.form-field select,
.form-field textarea{
  appearance: none;
  -webkit-appearance: none;
  padding: 14px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
  min-width: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder{ color: var(--gray-soft); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--clay);
  background: var(--paper);
  box-shadow: 0 0 0 4px oklch(0.53 0.13 48 / 0.10);
}
.form-field textarea{ resize: vertical; min-height: 120px; }
.form-field select{
  padding-right: 42px;
  background-color: var(--bg);
  cursor: pointer;
  position: relative;
}
.form-field{ position: relative; }
.form-field .select-wrap{ position: relative; }
.form-field select{
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%),
                    linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-note{
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.01em;
}

#contact-form{
  max-width: 100%;
  overflow: hidden;
}
#contact-form .g-recaptcha{
  transform-origin: left center;
  max-width: 100%;
}

.footer{
  background: var(--bg-deep);
  color: var(--ink-3);
  padding: clamp(56px, 6vw, 88px) 0 24px;
  border-top: 1px solid var(--line);
}
.footer-top{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.footer-col{ display: flex; flex-direction: column; gap: 0; }
.footer-col h4{
  margin: 0 0 12px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}
.footer-col a, .footer-col span{
  color: var(--ink-2);
  font-size: 0.94rem;
  transition: color 0.3s var(--ease);
}
.footer-col a{ padding: 7px 0; display: block; }
.footer-col a:hover{ color: var(--clay-deep); }
.footer-col span{ padding: 7px 0; display: block; }

.footer-brand-col{ gap: 22px; max-width: 380px; }

.brand-footer{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.4s var(--ease);
}
.brand-footer:hover{ transform: translateY(-1px); }
.brand-footer-mark{
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: grid; place-items: center;
  transition: transform 0.5s var(--ease);
}
.brand-footer-mark svg{ width: 52px; height: 52px; display: block; }
.brand-footer:hover .brand-footer-mark{ transform: rotate(-3deg); }
.brand-footer-text{
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.15;
}
.brand-footer-name{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.brand-footer-sub{
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}

.footer-promise{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px;
}
.footer-promise li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.4;
}
.footer-promise svg{
  color: var(--clay);
  flex-shrink: 0;
}

.footer-bottom{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad-x) 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.005em;
}
.footer-org{ font-family: var(--f-body); }
.footer-back{
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gray);
  transition: color 0.3s var(--ease);
  padding: 6px 0;
}
.footer-back:hover{ color: var(--clay-deep); }
.footer-back svg{ transition: transform 0.45s var(--ease); }
.footer-back:hover svg{ transform: translateY(-2px); }

@media (min-width: 720px){
  .footer-top{ grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; align-items: start; }
}

.lightbox{
  position: fixed; inset: 0;
  z-index: 80;
  background: oklch(0.13 0.012 55 / 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease);
  padding: 24px;
}
.lightbox.is-open{ opacity: 1; pointer-events: auto; }
.lightbox img{
  max-width: 92vw; max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.94);
  transition: transform 0.5s var(--ease);
}
.lightbox.is-open img{ transform: scale(1); }
.lightbox-close,
.lightbox-nav{
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: oklch(0.95 0.010 75 / 0.10);
  color: var(--on-dark);
  display: grid; place-items: center;
  transition: background-color 0.3s var(--ease), transform 0.4s var(--ease);
  cursor: pointer;
}
.lightbox-close:hover, .lightbox-nav:hover{ background: oklch(0.95 0.010 75 / 0.20); }
.lightbox-close{ top: 24px; right: 24px; }
.lightbox-prev{ top: 50%; left: 24px; transform: translateY(-50%); }
.lightbox-next{ top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox-prev:hover{ transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover{ transform: translateY(-50%) translateX(2px); }
.lightbox-caption{
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  color: var(--on-dark-2);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  max-width: 80vw;
  text-align: center;
}

.img-lazy{
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}
.img-lazy.is-loaded{ opacity: 1; }

.reveal-up{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-up.is-visible{ opacity: 1; transform: translateY(0); }
.delay-1{ transition-delay: 0.08s; }
.delay-2{ transition-delay: 0.16s; }
.delay-3{ transition-delay: 0.24s; }
.delay-4{ transition-delay: 0.32s; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (min-width: 600px){
  .form-grid{ grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px){
  .footer-top{ grid-template-columns: repeat(2, 1fr); }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .services-banner{ grid-template-columns: 1.4fr 1fr; gap: 32px; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .tile, .tile-wide, .tile-tall{ grid-column: span 1; grid-row: auto; aspect-ratio: 4 / 3; }
  .tile-wide{ grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

@media (min-width: 920px){
  .varfor-row{
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: baseline;
    padding: 26px 0 28px;
  }
}

@media (min-width: 920px){
  .om-grid{ grid-template-columns: 0.95fr 1fr; gap: 56px; }
}

@media (min-width: 980px){
  .bevis-grid{ grid-template-columns: 1fr 1fr; gap: 80px; }
  .kontakt-grid{ grid-template-columns: 0.85fr 1.15fr; gap: 32px; }
  .footer-top{ grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
}

@media (min-width: 1100px){
  .services-grid{ grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .gallery{ grid-template-columns: repeat(6, 1fr); grid-auto-rows: 280px; }
  .tile, .tile-wide, .tile-tall{ aspect-ratio: auto; }
  .tile{ grid-column: span 2; grid-row: span 1; }
  .tile-wide{ grid-column: span 4; grid-row: span 1; }
  .tile-tall{ grid-column: span 2; grid-row: span 2; }
  .varfor-row{
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    padding: 30px 0 32px;
  }
}

@media (max-width: 920px){
  .nav-links{ display: none; }
  .menu-toggle{ display: flex; }
  .hero{ padding: 180px 0 100px; }
  .navbar-inner{ height: 64px; }
  .hero-credits{ font-size: 0.8rem; gap: 10px 14px; }
}

@media (max-width: 640px){
  section, section > div, section > div > div, section > div > div > div {
    max-width: 100%;
    box-sizing: border-box;
  }
  .kontakt-grid > div, .form-grid > div, .gallery > * {
    min-width: 0;
    max-width: 100%;
  }
  .hero{ padding: 160px 0 80px; min-height: 92svh; }
  .hero-title{ font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .hero-credits{ flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-credits-sep{ display: none; }
  .hero-actions{ width: 100%; flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost{ width: 100%; justify-content: center; min-width: 0; }
  .om-stats{ grid-template-columns: 1fr; }
  .bevis-list{ grid-template-columns: 1fr; }
  .bevis-list li:nth-child(odd){ padding-right: 0; }
  .bevis-list li:nth-child(even){ padding-left: 0; border-left: 0; }
  .bevis-figure figcaption{ flex-direction: column; align-items: flex-start; gap: 2px; padding: 12px 14px; }
  .kontakt-form{ padding: 22px; }
  .kontakt-aside{ padding: 22px; }
  .gallery{ grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .tile, .tile-wide, .tile-tall{ grid-column: span 1; grid-row: auto; aspect-ratio: 1; }
  .tile-wide{ grid-column: span 2; aspect-ratio: 16 / 10; }
  .topbar-msg{ font-size: 0.7rem; letter-spacing: 0.005em; }
  .topbar-phone{ font-size: 0.78rem; }
  .topbar-inner{ gap: 10px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; gap: 8px; }
  .services-banner{ padding: 24px 20px; }
  .services-banner-actions{ width: 100%; flex-direction: column; }
  .services-banner-actions .btn-primary,
  .services-banner-actions .btn-light{ width: 100%; justify-content: center; }
  .om-cta{ flex-direction: column; align-items: flex-start; gap: 12px; }
  .om-cta .btn-primary{ width: 100%; justify-content: center; }
  .om-cta .link-arrow{ align-self: flex-start; width: max-content; }
  .varfor-cta .btn-primary{ width: 100%; justify-content: center; }
  .footer-col a{ padding: 12px 0; }
}

@media (max-width: 540px){
  .topbar-msg{ display: none; }
  .topbar-inner{ justify-content: center; }
}

@media (max-width: 400px){
  #contact-form .g-recaptcha{ transform: scale(0.85); }
}

@media (max-width: 340px){
  #contact-form .g-recaptcha{ transform: scale(0.75); }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    transition-duration: 0.001ms;
    scroll-behavior: auto;
  }
}
